Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 20, 2006, 12:17:44 AM (18 years ago)
Author:
bensch
Message:

doxy

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/util/loading/load_param_class_description.h

    r9775 r9776  
    3434public:
    3535  LoadParamClassDescription(const std::string& className = "");
    36   ~LoadParamClassDescription();
    3736
     37  //! Compares a LoadParamClassDescription with a String.
    3838  bool operator==(const std::string& className) const { return this->_className == className; };
     39  //! Compares two LoadParamClassDescription with each other
    3940  bool operator==(const LoadParamClassDescription& classDescr) const { return this->_className == classDescr._className; };
     41  //! Compares two LoadParamClassDescription with each other, using the less operator
    4042  bool operator<(const LoadParamClassDescription& classDescr) const { return this->_className < classDescr._className; }
    4143
     
    5052                          bool retVal = false);
    5153
    52 
     54  /** @param createThem: if the Parameters should be created/stored. */
    5355  static void createDescriptions(bool createThem) { _createParametersDescription = createThem; };
     56  /** @returns if the Parameters are created/stored. */
    5457  static bool createsDescriptions() { return _createParametersDescription; };
    5558
     
    5962
    6063private:
     64  //! A Type definition for the Map of Class Descriptions
    6165  typedef std::map<ClassID, LoadParamClassDescription>  ClassDescriptionMap;
     66  //! A type definition for the Map of Parameter Descriptions inside of Class-descriptions.
    6267  typedef std::map<std::string, LoadParamDescription>   ParamDescriptionMap;
    6368
Note: See TracChangeset for help on using the changeset viewer.