41 SbTypedStorage(
unsigned int size) { this->storage = cc_storage_construct(size); }
42 SbTypedStorage(
unsigned int size,
void (*constr)(
void *),
void (*destr)(
void *))
43 { this->storage = cc_storage_construct_etc(size, constr, destr); }
44 ~SbTypedStorage(
void) { cc_storage_destruct(this->storage); }
46 Type get(
void) {
return (Type) cc_storage_get(this->storage); }