IEC61970 16v29a - IEC61968 12v08
CashierShift.h
1 // CashierShift.h
3 // Implementation of the Class CashierShift
5 
6 #ifndef CASHIERSHIFT_H
7 #define CASHIERSHIFT_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/Money.h"
12 #include "IEC61968/PaymentMetering/PointOfSale.h"
13 #include "IEC61968/PaymentMetering/Receipt.h"
14 #include "IEC61968/PaymentMetering/Transaction.h"
15 #include "IEC61968/PaymentMetering/Shift.h"
16 
17 namespace IEC61968
18 {
19  namespace PaymentMetering
20  {
26  {
27 
28  public:
29  CashierShift();
30  virtual ~CashierShift();
43  std::list<IEC61968::PaymentMetering::Receipt*> Receipts;
47  std::list<IEC61968::PaymentMetering::Transaction*> Transactions;
48 
49  };
50 
51  }
52 
53 }
54 #endif // CASHIERSHIFT_H
Definition: PointOfSale.h:22
Definition: Money.h:22
std::list< IEC61968::PaymentMetering::Transaction * > Transactions
Definition: CashierShift.h:47
std::list< IEC61968::PaymentMetering::Receipt * > Receipts
Definition: CashierShift.h:43
IEC61968::PaymentMetering::PointOfSale * PointOfSale
Definition: CashierShift.h:39
Definition: CashierShift.h:25
IEC61970::Base::Domain::Money cashFloat
Definition: CashierShift.h:35
Definition: BusbarSectionInfo.h:14
Definition: Shift.h:33