Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 19, 2006, 5:58:08 PM (18 years ago)
Author:
bensch
Message:

compiles again for real… this time it is true :)

File:
1 edited

Legend:

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

    r9765 r9767  
    3838  ~LoadParamDescription();
    3939
    40   bool operator==(const std::string& paramName) const { return this->name == paramName; };
    41   bool operator==(const LoadParamDescription& paramDescr) const { return this->name == paramDescr.name; };
    42   bool operator<(const LoadParamDescription& paramDescr) const { return this->name < paramDescr.name; };
     40  bool operator==(const std::string& paramName) const { return this->_name == paramName; };
     41  bool operator==(const LoadParamDescription& paramDescr) const { return this->_name == paramDescr._name; };
     42  bool operator<(const LoadParamDescription& paramDescr) const { return this->_name < paramDescr._name; };
    4343
    4444  void setDescription(const std::string& descriptionText);
    4545  /** @returns the descriptionString */
    46   const std::string& getDescription() { return this->description; };
     46  const std::string& description() { return this->_description; };
    4747
    4848  void print() const;
    4949
    5050private:
    51   const std::string          name;                  //!< The Name of the Parameter.
    52   unsigned int               parameterCount;        //!< The Count of parameters.
    53   std::string                description;           //!< A longer description about this function.
     51  const std::string          _name;                  //!< The Name of the Parameter.
     52  unsigned int               _parameterCount;        //!< The Count of parameters.
     53  std::string                _description;           //!< A longer description about this function.
    5454
    55   std::vector<std::string>   types;
    56   std::vector<std::string>   defaultValues;
    57 
     55  std::vector<std::string>   _types;
     56  std::vector<std::string>   _defaultValues;
    5857};
    5958
Note: See TracChangeset for help on using the changeset viewer.