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_description.h

    r9772 r9776  
    3636public:
    3737  LoadParamDescription(const std::string& paramName = "");
    38   ~LoadParamDescription();
    3938
     39  //! Compares a LoadParamDescription with a String.
    4040  bool operator==(const std::string& paramName) const { return this->_name == paramName; };
     41  //! Compares two LoadParamDescription
    4142  bool operator==(const LoadParamDescription& paramDescr) const { return this->_name == paramDescr._name; };
     43  //! Compares two LoadParamDescription with the less operator
    4244  bool operator<(const LoadParamDescription& paramDescr) const { return this->_name < paramDescr._name; };
    4345
     
    5658  std::string                _description;           //!< A longer description about this function.
    5759
    58   std::vector<std::string>   _types;
    59   std::vector<std::string>   _defaultValues;
     60  std::vector<std::string>   _types;                 //!< A Vector of types of this Parameter.
     61  std::vector<std::string>   _defaultValues;         //!< A Vector of defaultValues of this Parameter.
    6062};
    6163
Note: See TracChangeset for help on using the changeset viewer.