Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
Erik Palmer
VTK
Commits
d03dabd1
Commit
d03dabd1
authored
11 years ago
by
Brad King
Committed by
Code Review
11 years ago
Browse files
Options
Downloads
Plain Diff
Merge topic 'core-string' into master
7feab87c
vtkOStreamWrapper: Support std::string
parents
e3a25ff6
7feab87c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Common/Core/vtkOStreamWrapper.cxx
+3
-0
3 additions, 0 deletions
Common/Core/vtkOStreamWrapper.cxx
Common/Core/vtkOStreamWrapper.h
+8
-0
8 additions, 0 deletions
Common/Core/vtkOStreamWrapper.h
with
11 additions
and
0 deletions
Common/Core/vtkOStreamWrapper.cxx
+
3
−
0
View file @
d03dabd1
...
...
@@ -21,6 +21,8 @@
#include
"vtkObjectBase.h"
#include
"vtkSmartPointerBase.h"
#include
<string>
#define VTKOSTREAM_OPERATOR(type) \
vtkOStreamWrapper& vtkOStreamWrapper::operator << (type a) \
{ this->ostr << a; return *this; }
...
...
@@ -57,6 +59,7 @@ VTKOSTREAM_OPERATOR(vtkObjectBase&);
VTKOSTREAM_OPERATOR
(
const
vtkLargeInteger
&
);
VTKOSTREAM_OPERATOR
(
const
vtkSmartPointerBase
&
);
VTKOSTREAM_OPERATOR
(
const
vtkStdString
&
);
VTKOSTREAM_OPERATOR
(
const
std_string
&
);
VTKOSTREAM_OPERATOR
(
const
char
*
);
VTKOSTREAM_OPERATOR
(
void
*
);
VTKOSTREAM_OPERATOR
(
char
);
...
...
This diff is collapsed.
Click to expand it.
Common/Core/vtkOStreamWrapper.h
+
8
−
0
View file @
d03dabd1
...
...
@@ -41,8 +41,15 @@ class VTKCOMMONCORE_EXPORT vtkStdString;
class
vtkStdString
;
#endif
namespace
std
{
template
<
typename
,
typename
,
typename
>
class
basic_string
;
}
class
VTKCOMMONCORE_EXPORT
vtkOStreamWrapper
{
typedef
std
::
basic_string
<
char
,
std
::
char_traits
<
char
>
,
std
::
allocator
<
char
>
>
std_string
;
public:
// Description:
// Construct class to reference a real ostream. All methods and
...
...
@@ -65,6 +72,7 @@ public:
vtkOStreamWrapper
&
operator
<<
(
const
vtkLargeInteger
&
);
vtkOStreamWrapper
&
operator
<<
(
const
vtkSmartPointerBase
&
);
vtkOStreamWrapper
&
operator
<<
(
const
vtkStdString
&
);
vtkOStreamWrapper
&
operator
<<
(
const
std_string
&
);
vtkOStreamWrapper
&
operator
<<
(
const
char
*
);
vtkOStreamWrapper
&
operator
<<
(
void
*
);
vtkOStreamWrapper
&
operator
<<
(
char
);
...
...
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