00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef SST_ARCHIVE_H
00014 #define SST_ARCHIVE_H
00015
00016 #include <string>
00017
00018 namespace SST {
00019 class Simulation;
00020
00021 class Archive {
00022 public:
00023 Archive(std::string, std::string);
00024 ~Archive();
00025
00026 void SaveSimulation(Simulation* sim);
00027 Simulation* LoadSimulation(void);
00028 private:
00029 Archive();
00030 std::string type;
00031 std::string filename;
00032 };
00033
00034 }
00035
00036 #endif // SST_ARCHIVE_H