View | Details | Raw Unified | Return to bug 922
Collapse All | Expand All

(-)a/src/devices/wifi/aarf-wifi-manager.h (-1 / +1 lines)
 Lines 40-46    Link Here 
40
  virtual ~AarfWifiManager ();
40
  virtual ~AarfWifiManager ();
41
private:
41
private:
42
  // overriden from base class
42
  // overriden from base class
43
  virtual class WifiRemoteStation *DoCreateStation (void) const;
43
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
44
  virtual void DoReportRxOk (WifiRemoteStation *station, 
44
  virtual void DoReportRxOk (WifiRemoteStation *station, 
45
                             double rxSnr, WifiMode txMode);
45
                             double rxSnr, WifiMode txMode);
46
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
46
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/aarfcd-wifi-manager.h (-1 / +1 lines)
 Lines 43-49    Link Here 
43
43
44
private:
44
private:
45
  // overriden from base class
45
  // overriden from base class
46
  virtual class WifiRemoteStation *DoCreateStation (void) const;
46
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
47
  virtual void DoReportRxOk (WifiRemoteStation *station, 
47
  virtual void DoReportRxOk (WifiRemoteStation *station, 
48
                             double rxSnr, WifiMode txMode);
48
                             double rxSnr, WifiMode txMode);
49
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
49
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/amrr-wifi-manager.h (-1 / +1 lines)
 Lines 44-50    Link Here 
44
44
45
private:
45
private:
46
  // overriden from base class
46
  // overriden from base class
47
  virtual class WifiRemoteStation *DoCreateStation (void) const;
47
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
48
  virtual void DoReportRxOk (WifiRemoteStation *station, 
48
  virtual void DoReportRxOk (WifiRemoteStation *station, 
49
                             double rxSnr, WifiMode txMode);
49
                             double rxSnr, WifiMode txMode);
50
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
50
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/arf-wifi-manager.h (-1 / +1 lines)
 Lines 47-53    Link Here 
47
47
48
private:
48
private:
49
  // overriden from base class
49
  // overriden from base class
50
  virtual class WifiRemoteStation *DoCreateStation (void) const;
50
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
51
  virtual void DoReportRxOk (WifiRemoteStation *station, 
51
  virtual void DoReportRxOk (WifiRemoteStation *station, 
52
                             double rxSnr, WifiMode txMode);
52
                             double rxSnr, WifiMode txMode);
53
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
53
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/cara-wifi-manager.h (-1 / +1 lines)
 Lines 43-49    Link Here 
43
43
44
private:
44
private:
45
  // overriden from base class
45
  // overriden from base class
46
  virtual class WifiRemoteStation *DoCreateStation (void) const;
46
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
47
  virtual void DoReportRxOk (WifiRemoteStation *station, 
47
  virtual void DoReportRxOk (WifiRemoteStation *station, 
48
                             double rxSnr, WifiMode txMode);
48
                             double rxSnr, WifiMode txMode);
49
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
49
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/constant-rate-wifi-manager.h (-1 / +1 lines)
 Lines 41-47    Link Here 
41
41
42
private:
42
private:
43
  // overriden from base class
43
  // overriden from base class
44
  virtual class WifiRemoteStation *DoCreateStation (void) const;
44
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
45
  virtual void DoReportRxOk (WifiRemoteStation *station, 
45
  virtual void DoReportRxOk (WifiRemoteStation *station, 
46
                             double rxSnr, WifiMode txMode);
46
                             double rxSnr, WifiMode txMode);
47
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
47
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/dca-txop.h (-1 / +1 lines)
 Lines 114-120    Link Here 
114
  class Dcf;
114
  class Dcf;
115
  friend class Dcf;
115
  friend class Dcf;
116
  friend class TransmissionListener;
116
  friend class TransmissionListener;
117
  friend class WifiRemoteStation;
117
  friend struct WifiRemoteStation;
118
118
119
  DcaTxop &operator = (const DcaTxop &);
119
  DcaTxop &operator = (const DcaTxop &);
120
  DcaTxop (const DcaTxop &o);
120
  DcaTxop (const DcaTxop &o);
(-)a/src/devices/wifi/ideal-wifi-manager.h (-1 / +1 lines)
 Lines 52-58    Link Here 
52
52
53
private:
53
private:
54
  // overriden from base class
54
  // overriden from base class
55
  virtual class WifiRemoteStation *DoCreateStation (void) const;
55
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
56
  virtual void DoReportRxOk (WifiRemoteStation *station, 
56
  virtual void DoReportRxOk (WifiRemoteStation *station, 
57
                             double rxSnr, WifiMode txMode);
57
                             double rxSnr, WifiMode txMode);
58
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
58
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/minstrel-wifi-manager.h (-1 / +1 lines)
 Lines 54-60    Link Here 
54
54
55
private:
55
private:
56
  // overriden from base class
56
  // overriden from base class
57
  virtual class WifiRemoteStation *DoCreateStation (void) const;
57
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
58
  virtual void DoReportRxOk (WifiRemoteStation *station, 
58
  virtual void DoReportRxOk (WifiRemoteStation *station, 
59
                             double rxSnr, WifiMode txMode);
59
                             double rxSnr, WifiMode txMode);
60
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
60
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/onoe-wifi-manager.h (-1 / +1 lines)
 Lines 45-51    Link Here 
45
45
46
private:
46
private:
47
  // overriden from base class
47
  // overriden from base class
48
  virtual class WifiRemoteStation *DoCreateStation (void) const;
48
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
49
  virtual void DoReportRxOk (WifiRemoteStation *station, 
49
  virtual void DoReportRxOk (WifiRemoteStation *station, 
50
                             double rxSnr, WifiMode txMode);
50
                             double rxSnr, WifiMode txMode);
51
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
51
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/rraa-wifi-manager.h (-1 / +1 lines)
 Lines 54-60    Link Here 
54
  };
54
  };
55
55
56
  // overriden from base class
56
  // overriden from base class
57
  virtual class WifiRemoteStation *DoCreateStation (void) const;
57
  virtual struct WifiRemoteStation *DoCreateStation (void) const;
58
  virtual void DoReportRxOk (WifiRemoteStation *station, 
58
  virtual void DoReportRxOk (WifiRemoteStation *station, 
59
                             double rxSnr, WifiMode txMode);
59
                             double rxSnr, WifiMode txMode);
60
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
60
  virtual void DoReportRtsFailed (WifiRemoteStation *station);
(-)a/src/devices/wifi/wifi-remote-station-manager.h (-3 / +3 lines)
 Lines 31-38    Link Here 
31
31
32
namespace ns3 {
32
namespace ns3 {
33
33
34
class WifiRemoteStation;
34
struct WifiRemoteStation;
35
class WifiRemoteStationState;
35
struct WifiRemoteStationState;
36
class WifiPhy;
36
class WifiPhy;
37
class WifiMacHeader;
37
class WifiMacHeader;
38
38
 Lines 363-369    Link Here 
363
  /**
363
  /**
364
   * \return a new station data structure
364
   * \return a new station data structure
365
   */
365
   */
366
  virtual class WifiRemoteStation *DoCreateStation (void) const = 0;
366
  virtual struct WifiRemoteStation *DoCreateStation (void) const = 0;
367
  /**
367
  /**
368
   * \param station the station with which we need to communicate
368
   * \param station the station with which we need to communicate
369
   * \param size size of the packet or fragment we want to send
369
   * \param size size of the packet or fragment we want to send

Return to bug 922