-- CGStorageImpl.mesa
-- Last changed by Doug Wyatt, August 23, 1982 3:44 pm

DIRECTORY
CGStorage USING [],
SafeStorage USING [NewZone];

CGStorageImpl: CEDAR PROGRAM
IMPORTS SafeStorage
EXPORTS CGStorage = {

pZone: PUBLIC ZONENIL; -- prefixed zone
qZone: PUBLIC ZONENIL; -- quantized zone

Init: PROC = {
pZone ← SafeStorage.NewZone[prefixed];
qZone ← SafeStorage.NewZone[quantized];
};

Init[];

}.