IEC61970 16v29a - IEC61968 12v08
OverheadCost.h
1 // OverheadCost.h
3 // Implementation of the Class OverheadCost
5 
6 #ifndef OVERHEADCOST_H
7 #define OVERHEADCOST_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61970/Base/Domain/Money.h"
13 #include "IEC61968/Common/Status.h"
14 #include "IEC61968/InfIEC61968/InfWork/WorkIdentifiedObject.h"
15 
16 namespace IEC61968
17 {
18  namespace InfIEC61968
19  {
20  namespace InfWork
21  {
25  class WorkCostDetail;
27  {
28 
29  public:
30  OverheadCost();
31  virtual ~OverheadCost();
35  IEC61970::Base::Domain::String code;
41  std::list<IEC61968::InfIEC61968::InfWork::WorkCostDetail*> WorkCostDetails;
42 
43  };
44 
45  }
46 
47  }
48 
49 }
50 #endif // OVERHEADCOST_H
Definition: Status.h:20
Definition: Money.h:22
IEC61970::Base::Domain::Money cost
Definition: OverheadCost.h:39
IEC61970::Base::Domain::String code
Definition: OverheadCost.h:35
Definition: BusbarSectionInfo.h:14
Definition: WorkIdentifiedObject.h:23