00001 #include "CkptObject.h" 00002 #include "CkptContainer.h" 00003 00004 CkptRC CkptObject::commit() { 00005 if (_container == NULL) return CkptFailure; 00006 assert (this->getKey() != NULL); 00007 return _container->commit(this); 00008 } 00009