File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ ArgumentProcessorMain::ArgumentProcessorMain()
51
51
: WsjcppArgumentProcessor("test_program", "TODO description") {
52
52
TAG = "ArgumentProcessorMain";
53
53
// registrySingleArgument("--single", "What exactly do this single param?");
54
- // registryParameterArgument("-param", "What need this param?");
54
+ // registryParameterArgument("-param", "N", " What need this param?");
55
55
// registryExample("here example of command");
56
56
// registryProcessor(new ArgumentProcessorOtherProcessor());
57
57
}
@@ -76,7 +76,10 @@ bool ArgumentProcessorMain::applyParameterArgument(
76
76
77
77
// ---------------------------------------------------------------------
78
78
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
+ ) {
80
83
WsjcppLog::err(TAG, "Not implemented");
81
84
return -1;
82
85
}
You can’t perform that action at this time.
0 commit comments