IEC61970 16v29a - IEC61968 12v08
CustomerKind.h
1 // CustomerKind.h
3 // Implementation of the Class CustomerKind
4 // Original author: T. Kostic
6 
7 #ifndef CUSTOMERKIND_H
8 #define CUSTOMERKIND_H
9 
10 namespace IEC61968
11 {
12  namespace Customers
13  {
17  enum class CustomerKind
18  {
22  residential,
26  _undef = -1, residentialAndCommercial,
30  residentialAndStreetlight,
34  residentialStreetlightOthers,
38  residentialFarmService,
42  commercialIndustrial,
46  pumpingLoad,
50  windMachine,
54  energyServiceSupplier,
58  energyServiceScheduler,
62  internalUse,
66  other
67  };
68 
69  }
70 
71 }
72 #endif // CUSTOMERKIND_H
Definition: BusbarSectionInfo.h:14