Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 26, 2010, 2:06:16 AM (14 years ago)
Author:
landauf
Message:

adapted CommandExecutor and CommandEvaluation to make it compile again, but it doesn't run yet. ready for refactoring.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/consolecommands3/src/libraries/core/command/CommandEvaluation.h

    r7203 r7221  
    7272            void evaluateParams();
    7373
    74             bool isValid() const;
     74            bool isValid() const
     75                { return this->function_; }
    7576
    76             inline ConsoleCommand* getConsoleCommand() const
     77            inline _ConsoleCommand* getConsoleCommand() const
    7778                { return this->function_; }
    7879            inline const std::string& getOriginalCommand() const
     
    9394            static std::string dump(const std::list<std::pair<const std::string*, const std::string*> >& list);
    9495            static std::string dump(const ArgumentCompletionList& list);
    95             static std::string dump(const ConsoleCommand* command);
     96            static std::string dump(const _ConsoleCommand* command);
    9697
    9798
     
    109110
    110111            Identifier* functionclass_;
    111             ConsoleCommand* function_;
     112            _ConsoleCommand* function_;
    112113            std::string possibleArgument_;
    113114            std::string argument_;
Note: See TracChangeset for help on using the changeset viewer.