IEC61970 16v29a - IEC61968 12v08
MerchantAgreement.h
1 // MerchantAgreement.h
3 // Implementation of the Class MerchantAgreement
5 
6 #ifndef MERCHANTAGREEMENT_H
7 #define MERCHANTAGREEMENT_H
8 
9 #include <list>
10 
11 #include "IEC61968/Common/Agreement.h"
12 #include "IEC61968/PaymentMetering/MerchantAccount.h"
13 
14 namespace IEC61968
15 {
16  namespace PaymentMetering
17  {
25  {
26 
27  public:
29  virtual ~MerchantAgreement();
33  std::list<IEC61968::PaymentMetering::MerchantAccount*> MerchantAccounts;
34 
35  };
36 
37  }
38 
39 }
40 #endif // MERCHANTAGREEMENT_H
Definition: Agreement.h:22
Definition: MerchantAgreement.h:24
Definition: BusbarSectionInfo.h:14
std::list< IEC61968::PaymentMetering::MerchantAccount * > MerchantAccounts
Definition: MerchantAgreement.h:33