| 22 | VTKCOMMONCORE_EXPORT ostream& operator<<(ostream&, const vtkStdString&); |
| 23 | |
| 24 | class vtkStdString : public std::string |
| 25 | { |
| 26 | public: |
| 27 | typedef std::string StdString; |
| 28 | typedef StdString::value_type value_type; |
| 29 | typedef StdString::pointer pointer; |
| 30 | typedef StdString::reference reference; |
| 31 | typedef StdString::const_reference const_reference; |
| 32 | typedef StdString::size_type size_type; |
| 33 | typedef StdString::difference_type difference_type; |
| 34 | typedef StdString::iterator iterator; |
| 35 | typedef StdString::const_iterator const_iterator; |
| 36 | typedef StdString::reverse_iterator reverse_iterator; |
| 37 | typedef StdString::const_reverse_iterator const_reverse_iterator; |
| 38 | |
| 39 | vtkStdString() = default; |
| 40 | vtkStdString(const value_type* s) |
| 41 | : std::string(s) |
| 42 | { |
| 43 | } |
| 44 | vtkStdString(const value_type* s, size_type n) |
| 45 | : std::string(s, n) |
| 46 | { |
| 47 | } |
| 48 | vtkStdString(const std::string& s) |
| 49 | : std::string(s) |
| 50 | { |
| 51 | } |
| 52 | vtkStdString(std::string&& s) |
| 53 | : std::string(std::move(s)) |
| 54 | { |
| 55 | } |
| 56 | vtkStdString(const std::string& s, size_type pos, size_type n = std::string::npos) |
| 57 | : std::string(s, pos, n) |
| 58 | { |
| 59 | } |
| 60 | }; |
| 61 | |
| 62 | VTK_ABI_NAMESPACE_END |
| 63 | #endif |
no outgoing calls