IEC61970 16v29a - IEC61968 12v08
RightOfWay.h
1 // RightOfWay.h
3 // Implementation of the Class RightOfWay
5 
6 #ifndef RIGHTOFWAY_H
7 #define RIGHTOFWAY_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61968/Common/Agreement.h"
13 #include "IEC61968/InfIEC61968/InfLocations/LandProperty.h"
14 
15 namespace IEC61968
16 {
17  namespace InfIEC61968
18  {
19  namespace InfLocations
20  {
28  {
29 
30  public:
31  RightOfWay();
32  virtual ~RightOfWay();
37  IEC61970::Base::Domain::String propertyData;
41  std::list<IEC61968::InfIEC61968::InfLocations::LandProperty*> LandProperties;
42 
43  };
44 
45  }
46 
47  }
48 
49 }
50 #endif // RIGHTOFWAY_H
Definition: Agreement.h:22
IEC61970::Base::Domain::String propertyData
Definition: RightOfWay.h:37
Definition: BusbarSectionInfo.h:14
std::list< IEC61968::InfIEC61968::InfLocations::LandProperty * > LandProperties
Definition: RightOfWay.h:41