move private method to public
authorMathieu Lacage <mathieu.lacage@sophia.inria.fr>
Tue Mar 03 16:06:20 2009 +0100 (11 months ago)
changeset 4251d0c112652632
parent 4250 724c9442a9f0
child 4252 c82988c68a35
move private method to public
src/core/type-id.h
     1.1 --- a/src/core/type-id.h	Wed Feb 18 20:57:33 2009 -0800
     1.2 +++ b/src/core/type-id.h	Tue Mar 03 16:06:20 2009 +0100
     1.3 @@ -323,6 +323,15 @@
     1.4     */
     1.5    Ptr<const TraceSourceAccessor> LookupTraceSourceByName (std::string name) const;
     1.6  
     1.7 +
     1.8 +  /**
     1.9 +   * \param fullName the full name of the requested attribute
    1.10 +   * \param info a pointer to the TypeId::AttributeInfo data structure
    1.11 +   *        where the result value of this method will be stored.
    1.12 +   * \returns the Accessor associated to the requested attribute
    1.13 +   */
    1.14 +  static bool LookupAttributeByFullName (std::string fullName, struct AttributeInfo *info);
    1.15 +
    1.16    /**
    1.17     * \returns the internal integer which uniquely identifies this
    1.18     *          TypeId.
    1.19 @@ -354,14 +363,6 @@
    1.20    friend bool operator <  (TypeId a, TypeId b);
    1.21  
    1.22  
    1.23 -  /**
    1.24 -   * \param fullName the full name of the requested attribute
    1.25 -   * \param info a pointer to the TypeId::AttributeInfo data structure
    1.26 -   *        where the result value of this method will be stored.
    1.27 -   * \returns the Accessor associated to the requested attribute
    1.28 -   */
    1.29 -  static bool LookupAttributeByFullName (std::string fullName, struct AttributeInfo *info);
    1.30 -
    1.31    explicit TypeId (uint16_t tid);
    1.32    void DoAddConstructor (Callback<ObjectBase *> callback);
    1.33