CIM++ Adapted CIM_SINERGIEN Codebase
BPLCModem.h
1 // BPLCModem.h
3 // Implementation of the Class BPLCModem
4 // Original author: Alper Tokel
6 
7 #ifndef BPLCMODEM_H
8 #define BPLCMODEM_H
9 
10 #include <list>
11 
12 #include "Sinergien/Communication/Modems/WiredMod.h"
13 #include "Sinergien/Communication/Interfaces/BPLCInt.h"
14 
15 namespace Sinergien
16 {
17  namespace Communication
18  {
19  namespace Modems
20  {
22  {
23 
24  public:
25  BPLCModem();
26  virtual ~BPLCModem();
27  std::list<Sinergien::Communication::Interfaces::BPLCInt*> m_BPLCInt;
28 
29  };
30 
31  }
32 
33  }
34 
35 }
36 #endif // BPLCMODEM_H
Definition: BPLCChannel.h:13