IEC61970 17v23
SourcingActor.h
1 // SourcingActor.h
3 // Implementation of the Class SourcingActor
4 // Original author: selaost1
6 
7 #ifndef SOURCINGACTOR_H
8 #define SOURCINGACTOR_H
9 #include "BaseClass.h"
10 
11 namespace IEC61970
12 {
13  namespace Base
14  {
15  namespace ICCPConfiguration
16  {
17  class SourcingActor : public BaseClass
18  {
19 
20  public:
21  SourcingActor();
22  virtual ~SourcingActor();
23 
24  };
25 
26  }
27 
28  }
29 
30 }
31 #endif // SOURCINGACTOR_H
Definition: AuxiliaryEquipment.h:13
Definition: BaseClass.h:6