Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9779 in orxonox.OLD for branches/new_class_id/src/lib/shell


Ignore:
Timestamp:
Sep 20, 2006, 10:08:58 AM (18 years ago)
Author:
bensch
Message:

load_params: caputring is now to be enabled for performance reasons

Location:
branches/new_class_id/src/lib/shell
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/new_class_id/src/lib/shell/shell_command.h

    r9777 r9779  
    5656   */
    5757#define SHELL_COMMAND_STATIC(command, class, function) \
    58            OrxShell::ShellCommand* shell_command_##class##_##command = OrxShell::ShellCommand::registerCommand(#command, #class, createExecutor<class, BaseObject>(&class::function))
     58           OrxShell::ShellCommand* shell_command_##class##_##command = OrxShell::ShellCommand::registerCommand(#command, #class, createExecutor<class, BaseObject>(function))
    5959
    6060
  • branches/new_class_id/src/lib/shell/some_shell_commands.cc

    r9777 r9779  
    5555SHELL_COMMAND(debug, ResourceManager, debug);
    5656#include "loading/load_param_class_description.h"
    57 OrxShell::ShellCommand* shell_command_LPCD_printAll =
    58   OrxShell::ShellCommand::registerCommand("printAll", "LoadParamClassDescription",
    59                                           new Executor2_static<LoadParamClassDescription, const SubString, const std::string&, bool>(&LoadParamClassDescription::printAll))
    60 //SHELL_COMMAND_STATIC(print, LoadParamClassDescription, printAll)
     57SHELL_COMMAND_STATIC(printAll, LoadParamClassDescription, &LoadParamClassDescription::printAll)
    6158->defaultValues(MT_NULL, true);
     59SHELL_COMMAND_STATIC(capture, LoadParamClassDescription, &LoadParamClassDescription::captureDescriptions)
     60    ->defaultValues(true);
Note: See TracChangeset for help on using the changeset viewer.