Changeset 3035 for code/trunk/src/core
- Timestamp:
- May 24, 2009, 12:36:48 AM (16 years ago)
- Location:
- code/trunk/src/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandExecutor.cc
r2662 r3035 109 109 } 110 110 111 MultiType CommandExecutor::getReturnValue() 112 { 113 return CommandExecutor::getEvaluation().getReturnvalue(); 114 } 115 116 std::string CommandExecutor::getReturnValueString() 117 { 118 return CommandExecutor::getEvaluation().getReturnvalue().getString(); 119 } 120 111 121 std::string CommandExecutor::complete(const std::string& command) 112 122 { -
code/trunk/src/core/CommandExecutor.h
r2710 r3035 44 44 public: 45 45 static bool execute(const std::string& command, bool useTcl = true); // tolua_export 46 static MultiType getReturnValue(); 47 static std::string getReturnValueString(); // tolua_export 48 46 49 static std::string complete(const std::string& command); 47 50 static std::string hint(const std::string& command);
Note: See TracChangeset
for help on using the changeset viewer.