IEC61970 16v29a - IEC61968 12v08
OrganisationRole.h
1 // OrganisationRole.h
3 // Implementation of the Class OrganisationRole
4 // Original author: T. Kostic
6 
7 #ifndef ORGANISATIONROLE_H
8 #define ORGANISATIONROLE_H
9 
10 #include <list>
11 
12 #include "IEC61970/Base/Core/IdentifiedObject.h"
13 #include "IEC61968/Common/Organisation.h"
14 #include "IEC61968/Common/ConfigurationEvent.h"
15 
16 namespace IEC61968
17 {
18  namespace Common
19  {
25  {
26 
27  public:
29  virtual ~OrganisationRole();
37  std::list<IEC61968::Common::ConfigurationEvent*> ConfigurationEvents;
38 
39  };
40 
41  }
42 
43 }
44 #endif // ORGANISATIONROLE_H
Definition: Organisation.h:26
std::list< IEC61968::Common::ConfigurationEvent * > ConfigurationEvents
Definition: OrganisationRole.h:37
IEC61968::Common::Organisation * Organisation
Definition: OrganisationRole.h:33
Definition: IdentifiedObject.h:36
Definition: BusbarSectionInfo.h:14
Definition: OrganisationRole.h:24