Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Martin Willers
KWSys
Commits
011a2d6b
Commit
011a2d6b
authored
18 years ago
by
Andy Cedilnik
Browse files
Options
Downloads
Patches
Plain Diff
ENH: It does not really makes sense to have Boolean Argument List
parent
093838f0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CommandLineArguments.cxx
+0
-6
0 additions, 6 deletions
CommandLineArguments.cxx
CommandLineArguments.hxx.in
+0
-16
0 additions, 16 deletions
CommandLineArguments.hxx.in
with
0 additions
and
22 deletions
CommandLineArguments.cxx
+
0
−
6
View file @
011a2d6b
...
...
@@ -416,12 +416,6 @@ CommandLineArgumentsAddBooleanArgumentMacro(DOUBLE, double);
CommandLineArgumentsAddBooleanArgumentMacro
(
STRING
,
char
*
);
CommandLineArgumentsAddBooleanArgumentMacro
(
STL_STRING
,
kwsys_stl
::
string
);
CommandLineArgumentsAddBooleanArgumentMacro
(
VECTOR_BOOL
,
kwsys_stl
::
vector
<
bool
>
);
CommandLineArgumentsAddBooleanArgumentMacro
(
VECTOR_INT
,
kwsys_stl
::
vector
<
int
>
);
CommandLineArgumentsAddBooleanArgumentMacro
(
VECTOR_DOUBLE
,
kwsys_stl
::
vector
<
double
>
);
CommandLineArgumentsAddBooleanArgumentMacro
(
VECTOR_STRING
,
kwsys_stl
::
vector
<
char
*>
);
CommandLineArgumentsAddBooleanArgumentMacro
(
VECTOR_STL_STRING
,
kwsys_stl
::
vector
<
kwsys_stl
::
string
>
);
//----------------------------------------------------------------------------
void
CommandLineArguments
::
SetClientData
(
void
*
client_data
)
{
...
...
This diff is collapsed.
Click to expand it.
CommandLineArguments.hxx.in
+
0
−
16
View file @
011a2d6b
...
...
@@ -191,22 +191,6 @@ public:
void AddBooleanArgument(const char* argument,
kwsys_stl::string* variable, const char* help);
/**
* Add handler for boolean argument. The argument does not take any option
* and if it is specified, the value of the variable is true/1, otherwise it
* is false/0. This will handle the multi argument values.
*/
void AddBooleanArgument(const char* argument,
kwsys_stl::vector<bool>* variable, const char* help);
void AddBooleanArgument(const char* argument,
kwsys_stl::vector<int>* variable, const char* help);
void AddBooleanArgument(const char* argument,
kwsys_stl::vector<double>* variable, const char* help);
void AddBooleanArgument(const char* argument,
kwsys_stl::vector<char*>* variable, const char* help);
void AddBooleanArgument(const char* argument,
kwsys_stl::vector<kwsys_stl::string>* variable, const char* help);
/**
* Set the callbacks for error handling.
*/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment