VTK  9.1.0
vtkUTF8TextCodec.h
Go to the documentation of this file.
1/*=========================================================================
2
3Program: Visualization Toolkit
4Module: vtkUTF8TextCodec.h
5
6Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7All rights reserved.
8See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10This software is distributed WITHOUT ANY WARRANTY; without even
11the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
15/*-------------------------------------------------------------------------
16 Copyright 2008 Sandia Corporation.
17 Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
18 the U.S. Government retains certain rights in this software.
19-------------------------------------------------------------------------*/
37#ifndef vtkUTF8TextCodec_h
38#define vtkUTF8TextCodec_h
39
40#include "vtkIOCoreModule.h" // For export macro
41#include "vtkTextCodec.h"
42
43class VTKIOCORE_EXPORT vtkUTF8TextCodec : public vtkTextCodec
44{
45public:
48 void PrintSelf(ostream& os, vtkIndent indent) override;
49
53 const char* Name() override { return "UTF-8"; }
54
60 void ToUnicode(istream& InputStream, vtkTextCodec::OutputIterator& output) override;
61
66 vtkTypeUInt32 NextUTF32CodePoint(istream& inputStream) override;
67
68protected:
71
72private:
73 vtkUTF8TextCodec(const vtkUTF8TextCodec&) = delete;
74 void operator=(const vtkUTF8TextCodec&) = delete;
75};
76
77#endif
a simple class to control print indentation
Definition: vtkIndent.h:113
a base class that any output iterators need to derive from to use the first signature of to_unicode.
Definition: vtkTextCodec.h:76
Virtual class to act as an interface for all text codecs.
Definition: vtkTextCodec.h:45
Class to read/write UTF-8 text.
static vtkUTF8TextCodec * New()
vtkTypeUInt32 NextUTF32CodePoint(istream &inputStream) override
Return the next code point from the sequence represented by the begin, end iterators advancing begin ...
void PrintSelf(ostream &os, vtkIndent indent) override
The name this codec goes by - should match the string the factory will take to create it.
void ToUnicode(istream &InputStream, vtkTextCodec::OutputIterator &output) override
Iterate through the sequence represented by the stream assigning the result to the output iterator.
~vtkUTF8TextCodec() override
const char * Name() override
The name this codec goes by - should match the string the factory will take to create it.