VTK  9.2.6
vtkStdString.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkStdString.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
36#ifndef vtkStdString_h
37#define vtkStdString_h
38
39#include "vtkCommonCoreModule.h" // For export macro
40#include "vtkSystemIncludes.h" // For VTKCOMMONCORE_EXPORT.
41#include <string> // For the superclass.
42#include <utility> // For std::move
43
44class vtkStdString;
45VTKCOMMONCORE_EXPORT ostream& operator<<(ostream&, const vtkStdString&);
46
47class vtkStdString : public std::string
48{
49public:
50 typedef std::string StdString;
51 typedef StdString::value_type value_type;
52 typedef StdString::pointer pointer;
53 typedef StdString::reference reference;
54 typedef StdString::const_reference const_reference;
55 typedef StdString::size_type size_type;
56 typedef StdString::difference_type difference_type;
57 typedef StdString::iterator iterator;
58 typedef StdString::const_iterator const_iterator;
59 typedef StdString::reverse_iterator reverse_iterator;
60 typedef StdString::const_reverse_iterator const_reverse_iterator;
61
63 : std::string()
64 {
65 }
67 : std::string(s)
68 {
69 }
71 : std::string(s, n)
72 {
73 }
74 vtkStdString(const std::string& s)
75 : std::string(s)
76 {
77 }
78 vtkStdString(std::string&& s)
79 : std::string(std::move(s))
80 {
81 }
82 vtkStdString(const std::string& s, size_type pos, size_type n = std::string::npos)
83 : std::string(s, pos, n)
84 {
85 }
86
87 operator const char*() { return this->c_str(); }
88};
89
90#endif
91// VTK-HeaderTest-Exclude: vtkStdString.h
Wrapper around std::string to keep symbols short.
StdString::const_reference const_reference
vtkStdString(const value_type *s, size_type n)
StdString::size_type size_type
StdString::reference reference
vtkStdString(const value_type *s)
vtkStdString(std::string &&s)
StdString::const_iterator const_iterator
StdString::const_reverse_iterator const_reverse_iterator
std::string StdString
StdString::reverse_iterator reverse_iterator
vtkStdString(const std::string &s, size_type pos, size_type n=std::string::npos)
StdString::pointer pointer
StdString::value_type value_type
StdString::difference_type difference_type
StdString::iterator iterator
vtkStdString(const std::string &s)
VTKCOMMONCORE_EXPORT ostream & operator<<(ostream &, const vtkStdString &)