MCPcopy Create free account
hub / github.com/Kitware/VTK / vtkStdString

Class vtkStdString

Common/Core/vtkStdString.h:24–60  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22VTKCOMMONCORE_EXPORT ostream& operator<<(ostream&, const vtkStdString&);
23
24class vtkStdString : public std::string
25{
26public:
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
62VTK_ABI_NAMESPACE_END
63#endif

Callers 4

TestArrayAPIFunction · 0.50
TestArrayNullValuesFunction · 0.50
TestPolyhedronDecomposeFunction · 0.50

Calls

no outgoing calls

Tested by 3

TestArrayAPIFunction · 0.40
TestArrayNullValuesFunction · 0.40
TestPolyhedronDecomposeFunction · 0.40