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