CIM++ Adapted CIM_SINERGIEN Codebase
BPLCChannel.h
1 // BPLCChannel.h
3 // Implementation of the Class BPLCChannel
4 // Original author: Alper Tokel
6 
7 #ifndef BPLCCHANNEL_H
8 #define BPLCCHANNEL_H
9 
10 #include "Sinergien/Communication/Interfaces/BPLCInt.h"
11 #include "Sinergien/Communication/Channels/WiredChannel.h"
12 
13 namespace Sinergien
14 {
15  namespace Communication
16  {
17  namespace Channels
18  {
20  {
21 
22  public:
23  BPLCChannel();
24  virtual ~BPLCChannel();
27 
28  };
29 
30  }
31 
32  }
33 
34 }
35 #endif // BPLCCHANNEL_H
Definition: BPLCChannel.h:13