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
Container Registry
Model registry
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
Simon Wilson
KWSys
Commits
7fbd5077
Commit
7fbd5077
authored
18 years ago
by
Mathieu Malaterre
Browse files
Options
Downloads
Patches
Plain Diff
ENH: provide stringstream too. FIX: warning shadow var
parent
4d4d274f
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
kwsys_ios_sstream.h.in
+14
-2
14 additions, 2 deletions
kwsys_ios_sstream.h.in
testIOS.cxx
+29
-1
29 additions, 1 deletion
testIOS.cxx
with
43 additions
and
3 deletions
kwsys_ios_sstream.h.in
+
14
−
2
View file @
7fbd5077
...
...
@@ -64,6 +64,7 @@ using @KWSYS_NAMESPACE@_ios_namespace::ostream;
using @KWSYS_NAMESPACE@_ios_namespace::istream;
using @KWSYS_NAMESPACE@_ios_namespace::istrstream;
using @KWSYS_NAMESPACE@_ios_namespace::ostrstream;
using @KWSYS_NAMESPACE@_ios_namespace::strstream;
using @KWSYS_NAMESPACE@_ios_namespace::ios;
using @KWSYS_NAMESPACE@_ios_namespace::endl;
using @KWSYS_NAMESPACE@_ios_namespace::ends;
...
...
@@ -91,9 +92,9 @@ public:
{
ostringstream_cleanup cleanup(*this);
ostringstream_cleanup::IgnoreUnusedVariable(cleanup);
int
p
count = this->pcount();
int count = this->pcount();
const char* ptr = this->Superclass::str();
return kwsys_stl::string(ptr?ptr:"",
p
count);
return kwsys_stl::string(ptr?ptr:"", count);
}
void str(const kwsys_stl::string& s)
{
...
...
@@ -134,6 +135,17 @@ private:
# pragma warning (pop)
#endif
class stringstream: public istringstream, public ostringstream
{
public:
stringstream():istringstream(),ostringstream() {}
kwsys_stl::string str() const { return istringstream::str(); }
kwsys_stl::string str() { return ostringstream::str(); }
private:
stringstream(const stringstream&);
void operator=(const stringstream&);
};
} // namespace @KWSYS_NAMESPACE@_ios
#endif
...
...
This diff is collapsed.
Click to expand it.
testIOS.cxx
+
29
−
1
View file @
7fbd5077
...
...
@@ -13,8 +13,36 @@
int
main
()
{
const
char
refstring
[]
=
"Hello, World!"
;
kwsys_ios
::
ostringstream
ostr
;
ostr
<<
"Hello, World!"
;
ostr
<<
refstring
;
kwsys_ios
::
cout
<<
ostr
.
str
()
<<
kwsys_ios
::
endl
;
if
(
ostr
.
str
()
!=
refstring
)
{
return
1
;
}
kwsys_ios
::
istringstream
istr
;
istr
.
str
(
refstring
);
kwsys_ios
::
cout
<<
istr
.
str
()
<<
kwsys_ios
::
endl
;
if
(
istr
.
str
()
!=
refstring
)
{
return
1
;
}
const
int
val
=
12345
;
const
char
valstr
[]
=
"12345"
;
kwsys_ios
::
stringstream
sstr
;
sstr
<<
val
;
int
v
=
0
;
sstr
>>
v
;
if
(
v
!=
val
||
sstr
.
str
()
!=
valstr
)
{
return
1
;
}
kwsys_ios
::
cout
<<
sstr
.
str
()
<<
kwsys_ios
::
endl
;
return
0
;
}
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