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