CIM++ Adapted CIM Codebase
FuelType.h
1 // FuelType.h
3 // Implementation of the Class FuelType
5 
6 #ifndef FUELTYPE_H
7 #define FUELTYPE_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Generation
14  {
15  namespace Production
16  {
20  enum class FuelType
21  {
25  coal,
29  oil,
33  gas,
39  lignite,
43  hardCoal,
47  oilShale
48  };
49 
50  }
51 
52  }
53 
54  }
55 
56 }
57 #endif // FUELTYPE_H
Definition: AuxiliaryEquipment.h:13