no need for protected variables
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed Jul 02 13:22:14 2008 -0700 (19 months ago)
changeset 337351ff815f24a2
parent 3372 184673f59f53
child 3374 c7c4fa162069
no need for protected variables
src/devices/wifi/jakes-propagation-loss-model.h
     1.1 --- a/src/devices/wifi/jakes-propagation-loss-model.h	Wed Jul 02 13:21:56 2008 -0700
     1.2 +++ b/src/devices/wifi/jakes-propagation-loss-model.h	Wed Jul 02 13:22:14 2008 -0700
     1.3 @@ -97,7 +97,8 @@
     1.4     * Set the number of oscillators to use to compute the ray coefficient
     1.5     */
     1.6    void SetNOscillators (uint8_t nOscillators);
     1.7 -protected:
     1.8 +
     1.9 +private:
    1.10    class PathCoefficients;
    1.11    struct ComplexNumber {
    1.12      double real;
    1.13 @@ -109,7 +110,7 @@
    1.14    ComplexNumber* m_amp;
    1.15    RandomVariable m_variable;
    1.16    double m_fd;
    1.17 -private:
    1.18 +
    1.19    typedef std::vector<PathCoefficients *> DestinationList;
    1.20    struct PathsSet {
    1.21      Ptr<MobilityModel> sender;