Changeset 11071 for code/trunk/src/libraries/core/command/Executor.cc
- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/command/Executor.cc
r9550 r11071 67 67 68 68 /** 69 @brief Destructor70 */71 Executor::~Executor()72 {73 }74 75 /**76 69 @brief Calls the wrapped function with arguments that are passed in a string. 77 70 @param arguments The arguments that should be passed to the function, separated by @a delimiter 78 @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")71 @param error A pointer to a variable (or nullptr) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes") 79 72 @param delimiter The delimiter that is used to separate the arguments in the string @a arguments 80 73 @param bPrintError If true, errors are printed to the console if the function couldn't be executed with the given arguments … … 89 82 @brief Calls the wrapped function with arguments that are passed as tokens in a SubString 90 83 @param arguments The arguments that should be passed to the function 91 @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")84 @param error A pointer to a variable (or nullptr) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes") 92 85 @param delimiter The delimiter that was used to separate the arguments in the SubString @a arguments (used to join the surplus arguments) 93 86 @param bPrintError If true, errors are printed to the console if the function couldn't be executed with the given arguments … … 127 120 @param arguments The arguments that should be converted 128 121 @param arg An array of MultiType where the converted arguments will be stored 129 @param error A pointer to a variable (or NULL) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes")122 @param error A pointer to a variable (or nullptr) that is used to store the error code (see @ref CommandExecutorErrorCodes "CommandExecutor error codes") 130 123 @param delimiter The delimiter that was used to separate the arguments in the SubString @a arguments (used to join the surplus arguments) 131 124 @return Returns the number of evaluated arguments
Note: See TracChangeset
for help on using the changeset viewer.