IEC61970 16v29a - IEC61968 12v08
Cashier.h
1 // Cashier.h
3 // Implementation of the Class Cashier
5 
6 #ifndef CASHIER_H
7 #define CASHIER_H
8 
9 #include <list>
10 
11 #include "IEC61968/Common/ElectronicAddress.h"
12 #include "IEC61968/PaymentMetering/CashierShift.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 
15 namespace IEC61968
16 {
17  namespace PaymentMetering
18  {
24  {
25 
26  public:
27  Cashier();
28  virtual ~Cashier();
36  std::list<IEC61968::PaymentMetering::CashierShift*> CashierShifts;
37 
38  };
39 
40  }
41 
42 }
43 #endif // CASHIER_H
std::list< IEC61968::PaymentMetering::CashierShift * > CashierShifts
Definition: Cashier.h:36
Definition: ElectronicAddress.h:19
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
IEC61968::Common::ElectronicAddress electronicAddress
Definition: Cashier.h:32
Definition: Cashier.h:23