IEC61970 16v29a - IEC61968 12v08
ServiceSupplier.h
1 // ServiceSupplier.h
3 // Implementation of the Class ServiceSupplier
5 
6 #ifndef SERVICESUPPLIER_H
7 #define SERVICESUPPLIER_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61968/PaymentMetering/SupplierKind.h"
13 #include "IEC61968/InfIEC61968/InfCommon/BankAccount.h"
14 #include "IEC61968/Common/OrganisationRole.h"
15 #include "IEC61968/Metering/UsagePoint.h"
16 #include "IEC61968/Customers/CustomerAgreement.h"
17 
18 namespace IEC61968
19 {
20  namespace PaymentMetering
21  {
26  {
27 
28  public:
30  virtual ~ServiceSupplier();
37  IEC61970::Base::Domain::String issuerIdentificationNumber;
41  IEC61968::PaymentMetering::SupplierKind kind = IEC61968::PaymentMetering::SupplierKind::_undef;
45  std::list<IEC61968::InfIEC61968::InfCommon::BankAccount*> BankAccounts;
49  std::list<IEC61968::Metering::UsagePoint*> UsagePoints;
53  std::list<IEC61968::Customers::CustomerAgreement*> CustomerAgreements;
54 
55  };
56 
57  }
58 
59 }
60 #endif // SERVICESUPPLIER_H
std::list< IEC61968::Metering::UsagePoint * > UsagePoints
Definition: ServiceSupplier.h:49
IEC61968::PaymentMetering::SupplierKind kind
Definition: ServiceSupplier.h:41
std::list< IEC61968::InfIEC61968::InfCommon::BankAccount * > BankAccounts
Definition: ServiceSupplier.h:45
std::list< IEC61968::Customers::CustomerAgreement * > CustomerAgreements
Definition: ServiceSupplier.h:53
Definition: ServiceSupplier.h:25
Definition: BusbarSectionInfo.h:14
Definition: OrganisationRole.h:24
IEC61970::Base::Domain::String issuerIdentificationNumber
Definition: ServiceSupplier.h:37