IEC61970 16v29a - IEC61968 12v08
CostType.h
1 // CostType.h
3 // Implementation of the Class CostType
5 
6 #ifndef COSTTYPE_H
7 #define COSTTYPE_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/Boolean.h"
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61968/Common/Status.h"
14 #include "IEC61968/InfIEC61968/InfWork/WorkCostDetail.h"
15 #include "IEC61968/InfIEC61968/InfERPSupport/ErpJournalEntry.h"
16 #include "IEC61968/InfIEC61968/InfWork/WorkIdentifiedObject.h"
17 #include "IEC61968/InfIEC61968/InfWork/CompatibleUnit.h"
18 
19 namespace IEC61968
20 {
21  namespace InfIEC61968
22  {
23  namespace InfWork
24  {
31  {
32 
33  public:
34  CostType();
35  virtual ~CostType();
45  IEC61970::Base::Domain::String code;
50  IEC61970::Base::Domain::String level;
55  IEC61970::Base::Domain::String stage;
57  std::list<IEC61968::InfIEC61968::InfWork::CostType*> ChildCostTypes;
58  std::list<IEC61968::InfIEC61968::InfWork::WorkCostDetail*> WorkCostDetails;
59  std::list<IEC61968::InfIEC61968::InfERPSupport::ErpJournalEntry*> ErpJournalEntries;
60  std::list<IEC61968::InfIEC61968::InfWork::CompatibleUnit*> CompatibleUnits;
61 
62  };
63 
64  }
65 
66  }
67 
68 }
69 #endif // COSTTYPE_H
IEC61970::Base::Domain::String stage
Definition: CostType.h:55
Definition: Status.h:20
IEC61970::Base::Domain::String level
Definition: CostType.h:50
Definition: Boolean.h:17
IEC61970::Base::Domain::Boolean amountAssignable
Definition: CostType.h:41
Definition: BusbarSectionInfo.h:14
IEC61970::Base::Domain::String code
Definition: CostType.h:45
Definition: WorkIdentifiedObject.h:23