CIM++ Adapted CIM_SINERGIEN Codebase
ComMod.h
1 // ComMod.h
3 // Implementation of the Class ComMod
4 // Original author: Alper Tokel
6 
7 #ifndef COMMOD_H
8 #define COMMOD_H
9 
10 #include "IEC61970/Base/Domain/Float.h"
11 #include "IEC61970/Base/Core/IdentifiedObject.h"
12 
13 namespace Sinergien
14 {
15  namespace Communication
16  {
17  namespace Modems
18  {
20  {
21 
22  public:
23  ComMod();
24  virtual ~ComMod();
25  IEC61970::Base::Domain::Float cost;
26 
27  };
28 
29  }
30 
31  }
32 
33 }
34 #endif // COMMOD_H
Definition: BPLCChannel.h:13
Definition: IdentifiedObject.h:36