VTK
vtkTextCodec.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkTextCodec.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 =========================================================================*/
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 -------------------------------------------------------------------------*/
36 #ifndef vtkTextCodec_h
37 #define vtkTextCodec_h
38 
39 #include "vtkIOCoreModule.h" // For export macro
40 #include "vtkObject.h"
41 #include "vtkUnicodeString.h" // for the value type and for function return.
42 
44 {
45 public:
46  vtkTypeMacro(vtkTextCodec, vtkObject);
47 
49 
51  virtual const char* Name();
52  void PrintSelf(ostream& os, vtkIndent indent);
54 
55  virtual bool CanHandle(const char* NameString);
56 
59  virtual bool IsValid(istream& InputStream);
60 
62 
67  {
68  public:
69  virtual OutputIterator& operator++(int) = 0;
70  virtual OutputIterator& operator*() = 0;
71  virtual OutputIterator& operator=(const vtkUnicodeString::value_type value) = 0;
73 
74  OutputIterator() {} virtual ~OutputIterator() {}
75 
76  private:
77  OutputIterator(const OutputIterator&); // Not implemented
78  const OutputIterator& operator=(const OutputIterator&); // Not Implemented
79  };
80 
82 
85  virtual void ToUnicode(istream& InputStream,
86  vtkTextCodec::OutputIterator& output) = 0;
88 
91  vtkUnicodeString ToUnicode(istream & inputStream);
92 
96  virtual vtkUnicodeString::value_type NextUnicode(istream& inputStream) = 0;
97 
98 //BTX
99 protected:
100  vtkTextCodec();
101  ~vtkTextCodec();
102 
103 private:
104  vtkTextCodec(const vtkTextCodec &); // Not implemented.
105  void operator=(const vtkTextCodec &); // Not implemented.
106 
107 //ETX
108 };
109 
110 #endif
abstract base class for most VTK objects
Definition: vtkObject.h:61
vtkUnicodeStringValueType value_type
Virtual class to act as an interface for all text codecs.
Definition: vtkTextCodec.h:43
#define VTKIOCORE_EXPORT
virtual void PrintSelf(ostream &os, vtkIndent indent)
a simple class to control print indentation
Definition: vtkIndent.h:38
vtkVector< A, Size > operator*(const vtkVector< A, Size > &v1, const vtkVector< A, Size > &v2)
String class that stores Unicode text.