class StorableImpl
StorableImpl-inheritance
Storable implementation. This is an implementation of the IDL interface Storage::Storable
Public Member functions Summary:
 constructor StorableImpl()
Constructor.
virtual void store(Storage::ObjectState_ptr)
Store the given object state.
virtual void load(Storage::ObjectState_ptr)
Loads the given object state.
Protected Member functions Summary:
virtual destructor ~StorableImpl()
Destructor.
Private Structs Summary:
struct Private
Private Data members Summary:
Private data.
Public Member functions Details:
 constructor StorableImpl()
Constructor. You know what a constructor is
virtual void store(Storage::ObjectState_ptr)
Store the given object state. The _ptr of the type means that this is a CORBA object reference, since this may be called via a remote interface
virtual void load(Storage::ObjectState_ptr)
Loads the given object state.
Protected Member functions Details:
virtual destructor ~StorableImpl()
Destructor. Note its virtuality
Private Structs Details:
struct Private
Private data structure
Private Data members Details:
Private data. The 'Private' type is only defined in the .cc file.