Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
K
KWSys
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Utils
KWSys
Commits
9ac63c9d
Commit
9ac63c9d
authored
20 years ago
by
Andy Cedilnik
Browse files
Options
Downloads
Patches
Plain Diff
ERR: More missing ios and includes
parent
bf2bd632
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
+1
-0
1 addition, 0 deletions
CommandLineArguments.cxx
testCommandLineArguments.cxx
+18
-16
18 additions, 16 deletions
testCommandLineArguments.cxx
with
19 additions
and
16 deletions
CommandLineArguments.cxx
+
1
−
0
View file @
9ac63c9d
...
...
@@ -20,6 +20,7 @@
#include KWSYS_HEADER(stl/map)
#include KWSYS_HEADER(stl/set)
#include KWSYS_HEADER(ios/sstream)
#include KWSYS_HEADER(ios/iostream)
#include
<stdio.h>
...
...
This diff is collapsed.
Click to expand it.
testCommandLineArguments.cxx
+
18
−
16
View file @
9ac63c9d
...
...
@@ -13,14 +13,16 @@
=========================================================================*/
#include
<kwsys/CommandLineArguments.hxx>
#include
<kwsys/ios/iostream>
void
*
random_ptr
=
(
void
*
)
0x123
;
int
argument
(
const
char
*
arg
,
const
char
*
value
,
void
*
call_data
)
{
cout
<<
"Got argument:
\"
"
<<
arg
<<
"
\"
value:
\"
"
<<
(
value
?
value
:
"(null)"
)
<<
"
\"
"
<<
endl
;
kwsys_ios
::
cout
<<
"Got argument:
\"
"
<<
arg
<<
"
\"
value:
\"
"
<<
(
value
?
value
:
"(null)"
)
<<
"
\"
"
<<
kwsys_ios
::
endl
;
if
(
call_data
!=
random_ptr
)
{
cerr
<<
"Problem processing call_data"
<<
endl
;
kwsys_ios
::
cerr
<<
"Problem processing call_data"
<<
kwsys_ios
::
endl
;
return
0
;
}
return
1
;
...
...
@@ -28,10 +30,10 @@ int argument(const char* arg, const char* value, void* call_data)
int
unknown_argument
(
const
char
*
argument
,
void
*
call_data
)
{
cout
<<
"Got unknown argument:
\"
"
<<
argument
<<
"
\"
"
<<
endl
;
kwsys_ios
::
cout
<<
"Got unknown argument:
\"
"
<<
argument
<<
"
\"
"
<<
kwsys_ios
::
endl
;
if
(
call_data
!=
random_ptr
)
{
cerr
<<
"Problem processing call_data"
<<
endl
;
kwsys_ios
::
cerr
<<
"Problem processing call_data"
<<
kwsys_ios
::
endl
;
return
0
;
}
return
1
;
...
...
@@ -83,28 +85,28 @@ int main(int argc, char* argv[])
if
(
!
arg
.
Parse
()
)
{
cerr
<<
"Problem parsing arguments"
<<
endl
;
kwsys_ios
::
cerr
<<
"Problem parsing arguments"
<<
kwsys_ios
::
endl
;
res
=
1
;
}
cout
<<
"Help: "
<<
arg
.
GetHelp
()
<<
endl
;
kwsys_ios
::
cout
<<
"Help: "
<<
arg
.
GetHelp
()
<<
kwsys_ios
::
endl
;
cout
<<
"Some int variable was set to: "
<<
some_int_variable
<<
endl
;
cout
<<
"Some double variable was set to: "
<<
some_double_variable
<<
endl
;
kwsys_ios
::
cout
<<
"Some int variable was set to: "
<<
some_int_variable
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
"Some double variable was set to: "
<<
some_double_variable
<<
kwsys_ios
::
endl
;
if
(
some_string_variable
)
{
cout
<<
"Some string variable was set to: "
<<
some_string_variable
<<
endl
;
kwsys_ios
::
cout
<<
"Some string variable was set to: "
<<
some_string_variable
<<
kwsys_ios
::
endl
;
delete
[]
some_string_variable
;
}
else
{
cerr
<<
"Problem setting string variable"
<<
endl
;
kwsys_ios
::
cerr
<<
"Problem setting string variable"
<<
kwsys_ios
::
endl
;
res
=
1
;
}
cout
<<
"Some STL String variable was set to: "
<<
some_stl_string_variable
.
c_str
()
<<
endl
;
cout
<<
"Some bool variable was set to: "
<<
some_bool_variable
<<
endl
;
cout
<<
"Some bool variable was set to: "
<<
some_bool_variable1
<<
endl
;
cout
<<
"bool_arg1 variable was set to: "
<<
bool_arg1
<<
endl
;
cout
<<
"bool_arg2 variable was set to: "
<<
bool_arg2
<<
endl
;
cout
<<
endl
;
kwsys_ios
::
cout
<<
"Some STL String variable was set to: "
<<
some_stl_string_variable
.
c_str
()
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
"Some bool variable was set to: "
<<
some_bool_variable
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
"Some bool variable was set to: "
<<
some_bool_variable1
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
"bool_arg1 variable was set to: "
<<
bool_arg1
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
"bool_arg2 variable was set to: "
<<
bool_arg2
<<
kwsys_ios
::
endl
;
kwsys_ios
::
cout
<<
kwsys_ios
::
endl
;
return
res
;
}
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