Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Apr 18, 2006, 4:48:37 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: small improved functoid

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/executor/executor_specials.h

    r7221 r7331  
    2323  public:
    2424    /**
    25      * Constructor of a ExecutorXML
     25   * @brief Constructor of a ExecutorXML
    2626     * @param function a Function to call
    2727     * @param root The XML root to search paramName under
     
    4343
    4444    /**
    45      * clones an ExecutorXML, used to copy this Element.
     45     * @brief clones an ExecutorXML, used to copy this Element.
    4646     * @returns a _new_ Copy of this Executor
    4747     */
     
    5656
    5757    /**
    58      * executes the Command on BaseObject
     58     * @brief executes the Command on BaseObject
    5959     * @param object the BaseObject to execute this Executor on
    6060     * @param loadString ignored in this case
    6161     */
    62     virtual void execute(BaseObject* object, const std::string& = "")
     62    virtual void operator()(BaseObject* object, const std::string& = "")
    6363    {
    6464      if (object != NULL && this->element != NULL)
     
    6868  private:
    6969    /**
    70      * used for the copy-(Clone)-constructor
     70   * @brief used for the copy-(Clone)-constructor
    7171     */
    7272    ExecutorXML() : Executor() { };
Note: See TracChangeset for help on using the changeset viewer.