CIM++ Adapted CIM_SINERGIEN Codebase
WLANType.h
1 // WLANType.h
3 // Implementation of the Enumeration WLANType
4 // Original author: Alper Tokel
6 
7 #ifndef WLANTYPE_H
8 #define WLANTYPE_H
9 
10 namespace Sinergien
11 {
12  namespace Communication
13  {
14  namespace Modems
15  {
16  enum class WLANType
17  {
18  IEEE80211n,
19  IEEE80211g,
20  IEEE80211ac
21  };
22 
23  }
24 
25  }
26 
27 }
28 #endif // WLANTYPE_H
Definition: BPLCChannel.h:13