- Timestamp:
- Aug 25, 2010, 1:04:55 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/consolecommands3/src/libraries/core/command/Executor.h
r7212 r7214 63 63 bool evaluate(const std::string& params, MultiType param[5], const std::string& delimiter = " ") const; 64 64 65 inline void setFunctor(const FunctorPtr& functor) 66 { this->functor_ = functor; } 65 67 inline const FunctorPtr& getFunctor() const 66 68 { return this->functor_; } 69 70 inline void setName(const std::string& name) 71 { this->name_ = name; } 72 inline const std::string& getName() const 73 { return this->name_; } 74 67 75 inline unsigned int getParamCount() const 68 76 { return this->functor_->getParamCount(); } … … 75 83 inline std::string getTypenameReturnvalue() const 76 84 { return this->functor_->getTypenameReturnvalue(); } 77 78 inline void setName(const std::string& name)79 { this->name_ = name; }80 inline const std::string& getName() const81 { return this->name_; }82 85 83 86 void setDefaultValues(const MultiType& param1);
Note: See TracChangeset
for help on using the changeset viewer.