CIM++ Adapted CIM Codebase
OldPerson.h
1 // OldPerson.h
3 // Implementation of the Class OldPerson
5 
6 #ifndef OLDPERSON_H
7 #define OLDPERSON_H
8 
9 #include <list>
10 
11 #include "IEC61968/Common/Status.h"
12 #include "IEC61970/Base/Domain/String.h"
13 #include "IEC61970/Base/Meas/MeasurementValue.h"
14 #include "IEC61968/InfIEC61968/InfCommon/PersonPropertyRole.h"
15 #include "IEC61968/InfIEC61968/InfERPSupport/ErpCompetency.h"
16 #include "IEC61968/InfIEC61968/InfWork/LaborItem.h"
17 #include "IEC61968/InfIEC61968/InfCommon/PersonOrganisationRole.h"
18 #include "IEC61968/InfIEC61968/InfCommon/PersonDocumentRole.h"
19 #include "IEC61968/InfIEC61968/InfERPSupport/ErpPersonnel.h"
20 #include "IEC61968/Common/Person.h"
21 
22 namespace IEC61968
23 {
24  namespace InfIEC61968
25  {
26  namespace InfCommon
27  {
31  class Skill;
33  {
34 
35  public:
36  OldPerson();
37  virtual ~OldPerson();
49  IEC61970::Base::Domain::String type;
50  std::list<IEC61970::Base::Meas::MeasurementValue*> MeasurementValues;
51  std::list<IEC61968::InfIEC61968::InfCommon::PersonPropertyRole*> LandPropertyRoles;
53  std::list<IEC61968::InfIEC61968::InfWork::LaborItem*> LaborItems;
54  std::list<IEC61968::InfIEC61968::InfCommon::Skill*> Skills;
55  std::list<IEC61968::InfIEC61968::InfCommon::PersonOrganisationRole*> OrganisationRoles;
56  std::list<IEC61968::InfIEC61968::InfCommon::PersonDocumentRole*> DocumentRoles;
58 
59  };
60 
61  }
62 
63  }
64 
65 }
66 #endif // OLDPERSON_H
Definition: Status.h:20
Definition: Person.h:25
Definition: BusbarSectionInfo.h:14
IEC61970::Base::Domain::String type
Definition: OldPerson.h:49