Changeset 1349 for code/trunk/src/core/CommandExecutor.h
- Timestamp:
- May 21, 2008, 9:07:08 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandExecutor.h
r1293 r1349 70 70 std::string read(const std::string& filename); 71 71 72 enum KeybindMode {}; // temporary73 74 72 /////////////////////// 75 73 // CommandEvaluation // … … 82 80 CommandEvaluation(); 83 81 84 KeybindMode getKeybindMode();82 KeybindMode::Enum getKeybindMode(); 85 83 bool isValid() const; 86 84 … … 89 87 inline std::string getAdditionalParameter() const 90 88 { return (this->additionalParameter_ != "") ? (" " + this->additionalParameter_) : ""; } 91 inline std::string getCommandString() const { return this->processedCommand_; } 89 inline ExecutorStatic* getEvaluatedExecutor() { return evaluatedExecutor_; } 90 inline std::string getCommandString() { return this->processedCommand_; } 92 91 93 92 void setEvaluatedParameter(unsigned int index, MultiTypeMath param);
Note: See TracChangeset
for help on using the changeset viewer.