VTK
vtkX3DExporterJavaHelper.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkX3DExporterJavaHelper.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 =========================================================================*/
21 #ifndef vtkX3DExporterJavaHelper_h
22 #define vtkX3DExporterJavaHelper_h
23 
24 #include "vtkIOExportModule.h" // For export macro
25 #include "vtkObject.h"
26 
27 class vtkX3DExporterJavaHelperInternal;
28 
29 class VTKIOEXPORT_EXPORT vtkX3DExporterJavaHelper : public vtkObject
30 {
31 public:
32  static vtkX3DExporterJavaHelper *New();
34 
35  int OpenFile(const char* fileName);
36  int Write(const char* data, vtkIdType length);
37  int Close();
38 
42  static void SetFastInfosetJarLocation(const char* location);
43 
44 protected:
47 
48 
49  vtkX3DExporterJavaHelperInternal* Internal;
50  static char* FastInfosetJarLocation;
51 
52 private:
53  vtkX3DExporterJavaHelper(const vtkX3DExporterJavaHelper&) VTK_DELETE_FUNCTION;
54  void operator=(const vtkX3DExporterJavaHelper&) VTK_DELETE_FUNCTION;
55 };
56 
57 
58 #endif
59 
abstract base class for most VTK objects
Definition: vtkObject.h:59
int vtkIdType
Definition: vtkType.h:287
vtkX3DExporterJavaHelperInternal * Internal
static vtkObject * New()
Create an object with Debug turned off, modified time initialized to zero, and reference counting on...