28#ifndef _util_state_state_h
29#define _util_state_state_h
31#include <util/class/class.h>
38class TranslateDataOut;
101 const char *keyword);
103 const char *objectname,
104 const char *keyword = 0);
This class is used to contain information about classes.
Definition class.h:147
Classes which need runtime information about themselves and their relationship to other classes can v...
Definition class.h:233
Base class for objects that can save/restore state.
Definition state.h:45
virtual void save_vbase_state(StateOut &)
Save the virtual bases for the object.
SavableState(StateIn &)
Each derived class StateIn CTOR handles the restore corresponding to calling save_object_state,...
void save_object_state(StateOut &)
This can be used for saving state when the exact type of the object is known for both the save and th...
static SavableState * key_restore_state(StateIn &si, const char *keyword)
Like restore_state, but keyword is used to override values while restoring.
static SavableState * restore_state(StateIn &si)
Restores objects saved with save_state.
virtual void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...
void save_state(StateOut &)
Save the state of the object as specified by the StateOut object.
Restores fundamental and user-defined types from images created with StateOut.
Definition statein.h:79
Serializes fundamental and user-defined types.
Definition stateout.h:71
Contains all MPQC code up to version 3.
Definition mpqcin.h:14
useful as a dummy template argument
Definition state.h:116
void save_data_state(StateOut &)
Save the base classes (with save_data_state) and the members in the same order that the StateIn CTOR ...