IEC61970 16v29a - IEC61968 12v08
Route.h
1 // Route.h
3 // Implementation of the Class Route
5 
6 #ifndef ROUTE_H
7 #define ROUTE_H
8 
9 #include <list>
10 
11 #include "IEC61968/Common/Status.h"
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61970/Base/Core/IdentifiedObject.h"
14 #include "IEC61968/Common/Location.h"
15 
16 namespace IEC61968
17 {
18  namespace InfIEC61968
19  {
20  namespace InfLocations
21  {
26  {
27 
28  public:
29  Route();
30  virtual ~Route();
35  IEC61970::Base::Domain::String type;
36  std::list<IEC61968::Common::Location*> Locations;
37 
38  };
39 
40  }
41 
42  }
43 
44 }
45 #endif // ROUTE_H
Definition: Status.h:20
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
IEC61970::Base::Domain::String type
Definition: Route.h:35