18 #ifdef GENOM_SERIALIZATION
24 bool inRestoreAllComponents) : mDumpPath(inDumpPath), mFactory(inFactory),
25 mRestoreAllComponents(inRestoreAllComponents) {}
27 DumpRestoreData::DumpRestoreData(
const DumpRestoreData& inRhs) : mDumpPath(inRhs.mDumpPath),
28 mFactory(inRhs.mFactory), mRestoreAllComponents(inRhs.mRestoreAllComponents) {}
30 DumpRestoreData::~DumpRestoreData() throw () {}
32 DumpRestoreData& DumpRestoreData::operator =(
const DumpRestoreData& inRhs) {
34 mDumpPath = inRhs.mDumpPath;
35 mFactory = inRhs.mFactory;
36 mRestoreAllComponents = inRhs.mRestoreAllComponents;
44 #endif //GENOM_SERIALIZATION
boost::shared_ptr< ObjectFactory > ObjectFactorySharedPtr