Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/new_class_id/src/lib/util/loading/load_param_description.h @ 9772

Last change on this file since 9772 was 9772, checked in by bensch, 18 years ago

nice description again for the load_params

File size: 1.9 KB
Line 
1/*
2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
10
11   ### File Specific:
12   main-programmer: Benjamin Grauer
13   co-programmer: ...
14*/
15
16/*!
17 * @file load_param_description.h
18 * A Class and macro-functions, that makes our lives easy to load-in parameters
19 */
20
21#ifndef _LOAD_PARAM_DESCRIPTION_H
22#define _LOAD_PARAM_DESCRIPTION_H
23
24#include <vector>
25#include <string>
26
27// Forward Declaration //
28class MultiType;
29
30/************************
31*** DESCRIPTION STUFF ***
32************************/
33//! A class that handles the description of loadable parameters
34class LoadParamDescription
35{
36public:
37  LoadParamDescription(const std::string& paramName = "");
38  ~LoadParamDescription();
39
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; };
43
44  void setDescription(const std::string& descriptionText);
45  void setValues(unsigned int paramCount,
46                 const MultiType* const defaultValues,
47                 bool retVal = false);
48  /** @returns the descriptionString */
49  const std::string& description() { return this->_description; };
50
51  void print() const;
52
53private:
54  std::string                _name;                  //!< The Name of the Parameter.
55  unsigned int               _parameterCount;        //!< The Count of parameters.
56  std::string                _description;           //!< A longer description about this function.
57
58  std::vector<std::string>   _types;
59  std::vector<std::string>   _defaultValues;
60};
61
62#endif /* _LOAD_PARAM_DESCRIPTION_H */
Note: See TracBrowser for help on using the repository browser.