Changeset 1747 for code/trunk/src/core/CommandEvaluation.h
- Timestamp:
- Sep 9, 2008, 4:25:52 AM (17 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core3 (added) merged: 1573-1574,1583-1586,1591-1594,1596-1597,1603,1606-1607,1610-1611,1655,1658,1676-1679,1681-1685,1687,1716-1723,1725-1729,1736
- Property svn:mergeinfo changed
-
code/trunk/src/core/CommandEvaluation.h
r1505 r1747 37 37 #include "ArgumentCompletionListElement.h" 38 38 #include "util/SubString.h" 39 #include "util/MultiType Math.h"39 #include "util/MultiType.h" 40 40 41 41 namespace orxonox … … 81 81 { return (this->additionalParameter_ != "") ? (" " + this->additionalParameter_) : ""; } 82 82 83 void setEvaluatedParameter(unsigned int index, MultiType Mathparam);84 MultiType MathgetEvaluatedParameter(unsigned int index) const;83 void setEvaluatedParameter(unsigned int index, MultiType param); 84 MultiType getEvaluatedParameter(unsigned int index) const; 85 85 86 86 bool hasReturnvalue() const; 87 MultiType MathgetReturnvalue() const;87 MultiType getReturnvalue() const; 88 88 89 89 private: … … 115 115 116 116 bool bEvaluatedParams_; 117 MultiType Mathparam_[5];117 MultiType param_[5]; 118 118 }; 119 119 }
Note: See TracChangeset
for help on using the changeset viewer.