diff options
Diffstat (limited to 'src/paramproc.cpp')
| -rw-r--r-- | src/paramproc.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/paramproc.cpp b/src/paramproc.cpp index 10284c4..eaaf466 100644 --- a/src/paramproc.cpp +++ b/src/paramproc.cpp | |||
| @@ -396,3 +396,18 @@ ParamProc::ArgSpec *ParamProc::checkLetr( const char arg ) | |||
| 396 | return NULL; | 396 | return NULL; |
| 397 | } | 397 | } |
| 398 | 398 | ||
| 399 | int ParamProc::cmdParam( int argc, char *argv[] ) | ||
| 400 | { | ||
| 401 | printf("Unhandled command parameter \"%s\" found!\n", argv[0] ); | ||
| 402 | } | ||
| 403 | |||
| 404 | int ParamProc::unknownParam( int argc, char *argv[] ) | ||
| 405 | { | ||
| 406 | printf("Unknown parameter \"%s\" found!\n", argv[0] ); | ||
| 407 | } | ||
| 408 | |||
| 409 | int ParamProc::help( int argc, char *argv[] ) | ||
| 410 | { | ||
| 411 | // Insert help here later on | ||
| 412 | } | ||
| 413 | |||
