ESyS-Particle  2.3
ShortBondedInteractionCpData.h
Go to the documentation of this file.
1 // //
3 // Copyright (c) 2003-2014 by The University of Queensland //
4 // Centre for Geoscience Computing //
5 // http://earth.uq.edu.au/centre-geoscience-computing //
6 // //
7 // Primary Business: Brisbane, Queensland, Australia //
8 // Licensed under the Open Software License version 3.0 //
9 // http://www.opensource.org/licenses/osl-3.0.php //
10 // //
12 
13 #ifndef __SHORTBONDEDINTERACTIONCPDATA_H
14 #define __SHORTBONDEDINTERACTIONCPDATA_H
15 
16 // --- Project includes ---
18 
19 // --- IO includes ---
20 #include <iostream>
21 
22 using std::istream;
23 using std::ostream;
24 
26 
31 {
32  private:
33  double m_r0;
34 
35  public:
37  ShortBondedInteractionCpData(int,int,int,double);
39 
41 
42  virtual void saveCheckPointData(ostream&);
43  virtual void loadCheckPointData(istream&);
44 };
45 #endif // __SHORTBONDEDINTERACTIONCPDATA_H
Definition: BondedInteractionCpData.h:25
virtual void saveCheckPointData(ostream &)
Definition: ShortBondedInteractionCpData.cpp:61
virtual void loadCheckPointData(istream &)
Definition: ShortBondedInteractionCpData.cpp:73
Definition: ShortBondedInteractionCpData.h:30
class for a "short" bonded interaction
Definition: ShortBondedInteraction.h:33
double m_r0
Definition: ShortBondedInteractionCpData.h:33
virtual ~ShortBondedInteractionCpData()
Definition: ShortBondedInteractionCpData.h:40
ShortBondedInteractionCpData()
Definition: ShortBondedInteractionCpData.cpp:25