src/core/ref-count-base.cc
changeset 2946 14194a052b7d
parent 2775 03a23eb5f1e8
child 3395 3b6bc7a4f975
equal deleted inserted replaced
2945:8e9f4dc59d8b 2946:14194a052b7d
    28 RefCountBase::RefCountBase() 
    28 RefCountBase::RefCountBase() 
    29   : m_count (1) 
    29   : m_count (1) 
    30 {
    30 {
    31 }
    31 }
    32 
    32 
       
    33 RefCountBase::RefCountBase (const RefCountBase &o)
       
    34  : m_count (1)
       
    35 {}
       
    36 RefCountBase &
       
    37 RefCountBase::operator = (const RefCountBase &o)
       
    38 {
       
    39   return *this;
       
    40 }
       
    41 
    33 RefCountBase::~RefCountBase () 
    42 RefCountBase::~RefCountBase () 
    34 {
    43 {
    35 }
    44 }
    36 
    45 
    37 } // namespace ns3
    46 } // namespace ns3