IEC61970 16v29a - IEC61968 12v08
LandProperty.h
1 // LandProperty.h
3 // Implementation of the Class LandProperty
5 
6 #ifndef LANDPROPERTY_H
7 #define LANDPROPERTY_H
8 
9 #include <list>
10 
11 #include "IEC61968/InfIEC61968/InfLocations/DemographicKind.h"
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61968/InfIEC61968/InfLocations/LandPropertyKind.h"
14 #include "IEC61968/Common/Status.h"
15 #include "IEC61968/InfIEC61968/InfLocations/LocationGrant.h"
16 #include "IEC61968/InfIEC61968/InfERPSupport/ErpSiteLevelData.h"
17 #include "IEC61970/Base/Core/IdentifiedObject.h"
18 #include "IEC61968/InfIEC61968/InfCommon/PropertyOrganisationRole.h"
19 #include "IEC61968/InfIEC61968/InfCommon/PersonPropertyRole.h"
20 #include "IEC61968/Assets/AssetContainer.h"
21 #include "IEC61968/Common/Location.h"
22 
23 namespace IEC61968
24 {
25  namespace InfIEC61968
26  {
27  namespace InfLocations
28  {
35  {
36 
37  public:
38  LandProperty();
39  virtual ~LandProperty();
43  IEC61968::InfIEC61968::InfLocations::DemographicKind demographicKind = IEC61968::InfIEC61968::InfLocations::DemographicKind::_undef;
49  IEC61970::Base::Domain::String externalRecordReference;
54  IEC61968::InfIEC61968::InfLocations::LandPropertyKind kind = IEC61968::InfIEC61968::InfLocations::LandPropertyKind::_undef;
59  std::list<IEC61968::InfIEC61968::InfLocations::LocationGrant*> LocationGrants;
60  std::list<IEC61968::InfIEC61968::InfERPSupport::ErpSiteLevelData*> ErpSiteLevelDatas;
61  std::list<IEC61968::InfIEC61968::InfCommon::PropertyOrganisationRole*> ErpOrganisationRoles;
62  std::list<IEC61968::InfIEC61968::InfCommon::PersonPropertyRole*> ErpPersonRoles;
63  std::list<IEC61968::Assets::AssetContainer*> AssetContainers;
67  std::list<IEC61968::Common::Location*> Locations;
68 
69  };
70 
71  }
72 
73  }
74 
75 }
76 #endif // LANDPROPERTY_H
std::list< IEC61968::Common::Location * > Locations
Definition: LandProperty.h:67
Definition: Status.h:20
std::list< IEC61968::InfIEC61968::InfLocations::LocationGrant * > LocationGrants
Definition: LandProperty.h:59
IEC61970::Base::Domain::String externalRecordReference
Definition: LandProperty.h:49
Definition: IdentifiedObject.h:36
IEC61968::InfIEC61968::InfLocations::LandPropertyKind kind
Definition: LandProperty.h:54
Definition: BusbarSectionInfo.h:14
IEC61968::InfIEC61968::InfLocations::DemographicKind demographicKind
Definition: LandProperty.h:43