Changeset 8670 for code/branches/unity_build
- Timestamp:
- May 29, 2011, 10:58:28 PM (13 years ago)
- Location:
- code/branches/unity_build/src/libraries/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/unity_build/src/libraries/core/CommandLineParser.h
r8520 r8670 99 99 100 100 //! Returns the actual value of the argument. Can be equal to default value. 101 MultiTypegetValue() const { return value_; }101 const MultiType& getValue() const { return value_; } 102 102 //! Returns the given default value as type T. 103 MultiTypegetDefaultValue() const { return defaultValue_; }103 const MultiType& getDefaultValue() const { return defaultValue_; } 104 104 105 105 private: … … 156 156 static void getValue(const std::string& name, T* value) 157 157 { *value = (T)(getArgument(name)->getValue()); } 158 static MultiTypegetValue(const std::string& name)158 static const MultiType& getValue(const std::string& name) 159 159 { return getArgument(name)->getValue(); } 160 160 template <class T> -
code/branches/unity_build/src/libraries/core/command/Shell.h
r8669 r8670 85 85 Different graphical consoles build upon a Shell, for example InGameConsole and IOConsole. 86 86 */ 87 class _CoreExport Shell : virtual public OrxonoxClass,public OutputListener, public DevModeListener87 class _CoreExport Shell : public OutputListener, public DevModeListener 88 88 { 89 89 public:
Note: See TracChangeset
for help on using the changeset viewer.