IEC61970 16v29a - SINERGIEN 20170705
Regel.h
1 // Regel.h
3 // Implementation of the Class Regel
4 // Original author: rn
6 
7 #ifndef REGEL_H
8 #define REGEL_H
9 #include "BaseClass.h"
10 
11 namespace Sinergien
12 {
13  namespace ProCom
14  {
15  class Regel : public BaseClass
16  {
17 
18  public:
19  Regel();
20  virtual ~Regel();
21 
22  };
23 
24  }
25 
26 }
27 #endif // REGEL_H
Definition: Regel.h:15
Definition: BPLCChannel.h:13
Definition: BaseClass.h:6