You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

71 lines
2.1 KiB
C

/*=========================================================================
Program: Visualization Toolkit
Module: vtkStdString.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/**
* @class vtkStdString
* @brief Wrapper around std::string to keep symbols short.
*
* vtkStdString derives from std::string to provide shorter symbol
* names than basic_string<...> in namespace std given by the standard
* STL string.
*/
#ifndef vtkStdString_h
#define vtkStdString_h
#include "vtkCommonCoreModule.h" // For export macro
#include "vtkSystemIncludes.h" // For VTKCOMMONCORE_EXPORT.
#include <string> // For the superclass.
class vtkStdString;
VTKCOMMONCORE_EXPORT ostream& operator<<(ostream&, const vtkStdString&);
class vtkStdString : public std::string
{
public:
typedef std::string StdString;
typedef StdString::value_type value_type;
typedef StdString::pointer pointer;
typedef StdString::reference reference;
typedef StdString::const_reference const_reference;
typedef StdString::size_type size_type;
typedef StdString::difference_type difference_type;
typedef StdString::iterator iterator;
typedef StdString::const_iterator const_iterator;
typedef StdString::reverse_iterator reverse_iterator;
typedef StdString::const_reverse_iterator const_reverse_iterator;
vtkStdString()
: StdString()
{
}
vtkStdString(const value_type* s)
: StdString(s)
{
}
vtkStdString(const value_type* s, size_type n)
: StdString(s, n)
{
}
vtkStdString(const StdString& s, size_type pos = 0, size_type n = npos)
: StdString(s, pos, n)
{
}
operator const char*() { return this->c_str(); }
};
#endif
// VTK-HeaderTest-Exclude: vtkStdString.h