IEC61970 16v29a - IEC61968 12v08
PropertyUnit.h
1 // PropertyUnit.h
3 // Implementation of the Class PropertyUnit
5 
6 #ifndef PROPERTYUNIT_H
7 #define PROPERTYUNIT_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61968/InfIEC61968/InfWork/WorkActionKind.h"
13 #include "IEC61968/Common/Status.h"
14 #include "IEC61968/InfIEC61968/InfWork/WorkIdentifiedObject.h"
15 #include "IEC61968/InfIEC61968/InfWork/CompatibleUnit.h"
16 #include "IEC61968/InfIEC61968/InfWork/CUMaterialItem.h"
17 
18 namespace IEC61968
19 {
20  namespace InfIEC61968
21  {
22  namespace InfWork
23  {
28  {
29 
30  public:
31  PropertyUnit();
32  virtual ~PropertyUnit();
37  IEC61970::Base::Domain::String accountingUsage;
41  IEC61968::InfIEC61968::InfWork::WorkActionKind activityCode = IEC61968::InfIEC61968::InfWork::WorkActionKind::_undef;
46  IEC61970::Base::Domain::String propertyAccount;
48  std::list<IEC61968::InfIEC61968::InfWork::CompatibleUnit*> CompatibleUnits;
49  std::list<IEC61968::InfIEC61968::InfWork::CUMaterialItem*> CUMaterialItems;
50 
51  };
52 
53  }
54 
55  }
56 
57 }
58 #endif // PROPERTYUNIT_H
IEC61970::Base::Domain::String propertyAccount
Definition: PropertyUnit.h:46
Definition: Status.h:20
Definition: BusbarSectionInfo.h:14
IEC61968::InfIEC61968::InfWork::WorkActionKind activityCode
Definition: PropertyUnit.h:41
Definition: WorkIdentifiedObject.h:23
IEC61970::Base::Domain::String accountingUsage
Definition: PropertyUnit.h:37