forked from dgobbi/WrapVTK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
49 lines (39 loc) · 1.65 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
This is WrapVTK, an XML wrapper generator for VTK.
Copyright (c) 2010-2013, David Gobbi
All right reserved.
See Copyright.txt for more information.
=================
INTRODUCTION
=================
WrapVTK is a collection of CMake files and wrapper generator
code that can generate wrappers for an existing VTK binary
directory, assuming that all the header files and CMake exports
are present.
Currently, WrapVTK contains a generator for XML. The vtkWrapXML
generator uses the WrapVTK parsing utilities to generate information
about all accessible methods and variables of the VTK classes
and then dumps the information into a separate xml file for each
class.
See http://www.cognitive-antics.net/vtkwrapxml
for a description of the XML format that it produces.
=================
CONTENTS
=================
CMake/ # CMake modules
Doc/ # Copyright notices
Wrapping/ # The source code
CMakeLists.txt # The CMake file for this package
README # This file
CMake/
vtkIncludeAllKits.cmake # Imports all VTK modules
vtkWrapHierarchy.cmake # CMake macro to generate class hierarchy info
vtkWrapXML.cmake # CMake macro to convert header file to XML
Doc/
Copyright-Kitware.txt # Copyright for code imported from VTK
Copyright-Queens.txt # Copyright for code written at Queen's University
Copyright.txt # Copyright for all other code in package
Wrapping/
lex.yy.c # Tokenizer (part of the C++ parser)
vtkParse* # Code for parsing C++ header files
vtkWrapHierarchy.c # Program to generate class hierarchy info
vtkWrapXML.c # Program to convert C++ headers to XML