CIM++ Adapted CIM Codebase
Vendor.h
1 // Vendor.h
3 // Implementation of the Class Vendor
5 
6 #ifndef VENDOR_H
7 #define VENDOR_H
8 
9 #include <list>
10 
11 #include "IEC61968/PaymentMetering/VendorShift.h"
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 
14 namespace IEC61968
15 {
16  namespace PaymentMetering
17  {
26  {
27 
28  public:
29  Vendor();
30  virtual ~Vendor();
34  std::list<IEC61968::PaymentMetering::VendorShift*> VendorShifts;
35 
36  };
37 
38  }
39 
40 }
41 #endif // VENDOR_H
std::list< IEC61968::PaymentMetering::VendorShift * > VendorShifts
Definition: Vendor.h:34
Definition: Vendor.h:25
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14