Skip to content
Snippets Groups Projects
Commit d03dabd1 authored by Brad King's avatar Brad King Committed by Code Review
Browse files

Merge topic 'core-string' into master

7feab87c vtkOStreamWrapper: Support std::string
parents e3a25ff6 7feab87c
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment