Changeset 4746 in orxonox.OLD for orxonox/trunk/src/util/loading
- Timestamp:
- Jul 1, 2005, 12:48:48 PM (20 years ago)
- Location:
- orxonox/trunk/src/util/loading
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/util/loading/factory.h
r4739 r4746 53 53 static Factory* getFirst() { return Factory::first; }; 54 54 /** \returns the next factory */ 55 Factory* getNext( void) const { return this->next; };55 Factory* getNext() const { return this->next; }; 56 56 57 57 -
orxonox/trunk/src/util/loading/load_param.cc
r4734 r4746 179 179 \brief removes all the alocated memory 180 180 */ 181 LoadParamDescription::~LoadParamDescription( void)181 LoadParamDescription::~LoadParamDescription() 182 182 { 183 183 for(int i = 0; i < this->paramCount; i++) … … 208 208 \brief prints out this parameter, its input method and the description (if availiable) 209 209 */ 210 void LoadParamDescription::print( void) const210 void LoadParamDescription::print() const 211 211 { 212 212 PRINT(3)(" <%s>", this->paramName); … … 268 268 \brief deletes a classDescription (deletes all the parameterDescriptions as well 269 269 */ 270 LoadClassDescription::~LoadClassDescription( void)270 LoadClassDescription::~LoadClassDescription() 271 271 { 272 272 delete []this->className; -
orxonox/trunk/src/util/loading/load_param.h
r4734 r4746 254 254 public: 255 255 LoadParamDescription(const char* paramName); 256 ~LoadParamDescription( void);256 ~LoadParamDescription(); 257 257 258 258 void setDescription(const char* descriptionText); 259 259 /** \returns the descriptionString */ 260 const char* getDescription( void) { return this->description; };261 262 void print( void) const;260 const char* getDescription() { return this->description; }; 261 262 void print() const; 263 263 private: 264 264 char* paramName; //!< The name of the parameter. … … 275 275 public: 276 276 LoadClassDescription(const char* className); 277 ~LoadClassDescription( void);277 ~LoadClassDescription(); 278 278 279 279 static LoadClassDescription* addClass(const char* className);
Note: See TracChangeset
for help on using the changeset viewer.