Line data Source code
1 : // Copyright (C) 2015 Technische Universitaet Muenchen
2 : // This file is part of the Mamico project. For conditions of distribution
3 : // and use, please see the copyright notice in Mamico's main folder, or at
4 : // www5.in.tum.de/mamico
5 : #ifndef _MOLECULARDYNAMICS_CONFIGURATIONS_CHECKPOINTCONFIGURATION_H_
6 : #define _MOLECULARDYNAMICS_CONFIGURATIONS_CHECKPOINTCONFIGURATION_H_
7 :
8 : #include "simplemd/configurations/VTKConfiguration.h"
9 :
10 : namespace simplemd {
11 : namespace configurations {
12 : class CheckpointConfiguration;
13 : }
14 : } // namespace simplemd
15 :
16 : /** data for checkpoint writing */
17 : class simplemd::configurations::CheckpointConfiguration : public simplemd::configurations::VTKConfiguration {
18 : public:
19 408 : CheckpointConfiguration() : simplemd::configurations::VTKConfiguration() {}
20 408 : virtual ~CheckpointConfiguration() {}
21 :
22 0 : virtual std::string getTag() const { return "checkpoint-configuration"; }
23 : };
24 : #endif // _MOLECULARDYNAMICS_CONFIGURATIONS_CHECKPOINTCONFIGURATION_H_
|