Changeset 7331 in orxonox.OLD for trunk/src/lib/util/executor/executor_specials.h
- Timestamp:
- Apr 18, 2006, 4:48:37 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/lib/util/executor/executor_specials.h
r7221 r7331 23 23 public: 24 24 /** 25 *Constructor of a ExecutorXML25 * @brief Constructor of a ExecutorXML 26 26 * @param function a Function to call 27 27 * @param root The XML root to search paramName under … … 43 43 44 44 /** 45 * clones an ExecutorXML, used to copy this Element.45 * @brief clones an ExecutorXML, used to copy this Element. 46 46 * @returns a _new_ Copy of this Executor 47 47 */ … … 56 56 57 57 /** 58 * executes the Command on BaseObject58 * @brief executes the Command on BaseObject 59 59 * @param object the BaseObject to execute this Executor on 60 60 * @param loadString ignored in this case 61 61 */ 62 virtual void execute(BaseObject* object, const std::string& = "")62 virtual void operator()(BaseObject* object, const std::string& = "") 63 63 { 64 64 if (object != NULL && this->element != NULL) … … 68 68 private: 69 69 /** 70 *used for the copy-(Clone)-constructor70 * @brief used for the copy-(Clone)-constructor 71 71 */ 72 72 ExecutorXML() : Executor() { };
Note: See TracChangeset
for help on using the changeset viewer.