VTK
vtkTextCodecFactory.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3 Program: Visualization Toolkit
4 Module: vtkTextCodecFactory.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 -------------------------------------------------------------------------*/
38 #ifndef vtkTextCodecFactory_h
39 #define vtkTextCodecFactory_h
40 
41 #include "vtkIOCoreModule.h" // For export macro
42 #include "vtkObject.h"
43 
44 class vtkTextCodec;
45 
47 {
48 public:
50  static vtkTextCodecFactory* New() ;
51  void PrintSelf(ostream& os, vtkIndent indent);
52 
54  typedef vtkTextCodec* (*CreateFunction)();
55 
57 
61  static void RegisterCreateCallback(CreateFunction callback);
62  static void UnRegisterCreateCallback(CreateFunction callback);
63  static void UnRegisterAllCreateCallbacks();
65 
70  static vtkTextCodec* CodecForName(const char* CodecName);
71 
75  static vtkTextCodec* CodecToHandle(istream& InputStream);
76 
78  static void Initialize();
79 
80 //BTX
81 protected:
84 
85 private:
86  vtkTextCodecFactory(const vtkTextCodecFactory &); // Not implemented.
87  void operator=(const vtkTextCodecFactory &); // Not implemented.
88 
90 
91  class CallbackVector;
92  static CallbackVector* Callbacks;
94 
95 //ETX
96 };
97 
98 #endif // vtkTextCodecFactory_h
abstract base class for most VTK objects
Definition: vtkObject.h:61
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
maintain a list of text codecs and return instances
static vtkObject * New()