Skip to content

Commit ae5ef92

Browse files
committed
Updated README.md
1 parent a5a93f3 commit ae5ef92

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

README.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ ArgumentProcessorMain::ArgumentProcessorMain()
5151
: WsjcppArgumentProcessor("test_program", "TODO description") {
5252
TAG = "ArgumentProcessorMain";
5353
// registrySingleArgument("--single", "What exactly do this single param?");
54-
// registryParameterArgument("-param", "What need this param?");
54+
// registryParameterArgument("-param", "N", "What need this param?");
5555
// registryExample("here example of command");
5656
// registryProcessor(new ArgumentProcessorOtherProcessor());
5757
}
@@ -76,7 +76,10 @@ bool ArgumentProcessorMain::applyParameterArgument(
7676
7777
// ---------------------------------------------------------------------
7878
79-
int ArgumentProcessorMain::exec(const std::string &sProgramName, const std::vector<std::string> &vSubParams) {
79+
int ArgumentProcessorMain::exec(
80+
const std::vector<std::string> &vRoutes,
81+
const std::vector<std::string> &vSubParams
82+
) {
8083
WsjcppLog::err(TAG, "Not implemented");
8184
return -1;
8285
}

0 commit comments

Comments
 (0)