CIM++ Adapted CIM Codebase
Currency.h
1 // Currency.h
3 // Implementation of the Class Currency
5 
6 #ifndef CURRENCY_H
7 #define CURRENCY_H
8 
9 namespace IEC61970
10 {
11  namespace Base
12  {
13  namespace Domain
14  {
18  enum class Currency
19  {
23  USD,
27  EUR,
31  AUD,
35  CAD,
39  CHF,
43  CNY,
47  DKK,
51  GBP,
55  JPY,
59  NOK,
63  RUR,
67  SEK,
71  INR,
75  other
76  };
77 
78  }
79 
80  }
81 
82 }
83 #endif // CURRENCY_H
Definition: AuxiliaryEquipment.h:13