no need for protected members
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Wed Jul 02 13:23:54 2008 -0700 (19 months ago)
changeset 3378747aeace32ee
parent 3377 37b35c72bc57
child 3379 a2ef1eb4c16d
no need for protected members
src/routing/global-routing/candidate-queue.h
     1.1 --- a/src/routing/global-routing/candidate-queue.h	Wed Jul 02 13:23:44 2008 -0700
     1.2 +++ b/src/routing/global-routing/candidate-queue.h	Wed Jul 02 13:23:54 2008 -0700
     1.3 @@ -162,10 +162,6 @@
     1.4   */
     1.5    void Reorder (void);
     1.6  
     1.7 -protected:
     1.8 -  typedef std::list<SPFVertex*> CandidateList_t;
     1.9 -  CandidateList_t m_candidates;
    1.10 -
    1.11  private:
    1.12  /**
    1.13   * Candidate Queue copy construction is disallowed (not implemented) to 
    1.14 @@ -180,6 +176,9 @@
    1.15   * properly deal with deep copies.
    1.16   */
    1.17    CandidateQueue& operator= (CandidateQueue& sr);
    1.18 +
    1.19 +  typedef std::list<SPFVertex*> CandidateList_t;
    1.20 +  CandidateList_t m_candidates;
    1.21  };
    1.22  
    1.23  } // namespace ns3