IEC61970 16v29a - IEC61968 12v08
OldCrew.h
1 // OldCrew.h
3 // Implementation of the Class OldCrew
5 
6 #ifndef OLDCREW_H
7 #define OLDCREW_H
8 
9 #include <list>
10 
11 #include "IEC61970/Base/Domain/String.h"
12 #include "IEC61968/InfIEC61968/InfLocations/Route.h"
13 #include "IEC61968/InfIEC61968/InfWork/Assignment.h"
14 #include "IEC61968/InfIEC61968/InfWork/ShiftPattern.h"
15 #include "IEC61968/Common/Crew.h"
16 #include "IEC61968/Common/Organisation.h"
17 #include "IEC61968/Common/Location.h"
18 
19 namespace IEC61968
20 {
21  namespace InfIEC61968
22  {
23  namespace InfCommon
24  {
29  {
30 
31  public:
32  OldCrew();
33  virtual ~OldCrew();
37  IEC61970::Base::Domain::String type;
42  std::list<IEC61968::InfIEC61968::InfWork::Assignment*> Assignments;
43  std::list<IEC61968::InfIEC61968::InfWork::ShiftPattern*> ShiftPatterns;
44  std::list<IEC61968::Common::Organisation*> Organisations;
45  std::list<IEC61968::Common::Location*> Locations;
46 
47  };
48 
49  }
50 
51  }
52 
53 }
54 #endif // OLDCREW_H
IEC61970::Base::Domain::String type
Definition: OldCrew.h:37
std::list< IEC61968::InfIEC61968::InfWork::Assignment * > Assignments
Definition: OldCrew.h:42
Definition: BusbarSectionInfo.h:14
Definition: Crew.h:24