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

(-)a/src/core/model/object.cc (+6 lines)
 Lines 204-209    Link Here 
204
        }
204
        }
205
    }
205
    }
206
}
206
}
207
bool
208
Object::IsInitialized (void) const
209
{
210
  NS_LOG_FUNCTION (this);
211
  return m_initialized;
212
}
207
void 
213
void 
208
Object::Dispose (void)
214
Object::Dispose (void)
209
{
215
{
(-)a/src/core/model/object.h (+7 lines)
 Lines 219-224    Link Here 
219
   */
219
   */
220
  void Initialize (void);
220
  void Initialize (void);
221
221
222
  /**
223
   * Check if the object has been initialized.
224
   *
225
   * \brief returns true if the object has been initialized. 
226
   */
227
  bool IsInitialized (void) const;
228
222
protected:
229
protected:
223
  /**
230
  /**
224
   * Notify all Objects aggregated to this one of a new Object being
231
   * Notify all Objects aggregated to this one of a new Object being

Return to bug 2452