CIM++ Adapted CIM Codebase
CoolantType.h
1 // CoolantType.h
3 // Implementation of the Class CoolantType
5 
6 #ifndef COOLANTTYPE_H
7 #define COOLANTTYPE_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Wires
14  {
18  enum class CoolantType
19  {
23  air,
27  hydrogenGas,
31  water
32  };
33 
34  }
35 
36  }
37 
38 }
39 #endif // COOLANTTYPE_H
Definition: AuxiliaryEquipment.h:13