VTK
dox/Wrapping/Tools/vtkParseMangle.h
Go to the documentation of this file.
00001 /*=========================================================================
00002 
00003   Program:   Visualization Toolkit
00004   Module:    vtkParseMangle.h
00005 
00006   Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
00007   All rights reserved.
00008   See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
00009 
00010      This software is distributed WITHOUT ANY WARRANTY; without even
00011      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
00012      PURPOSE.  See the above copyright notice for more information.
00013 
00014 =========================================================================*/
00015 /*-------------------------------------------------------------------------
00016   Copyright (c) 2011 David Gobbi.
00017 
00018   Contributed to the VisualizationToolkit by the author in May 2011
00019   under the terms of the Visualization Toolkit 2008 copyright.
00020 -------------------------------------------------------------------------*/
00021 
00026 #ifndef VTK_PARSE_MANGLE_H
00027 #define VTK_PARSE_MANGLE_H
00028 
00029 #include <stddef.h>
00030 
00031 #ifdef __cplusplus
00032 extern "C" {
00033 #endif
00034 
00040 size_t vtkParse_MangledTypeName(const char *name, char *new_name);
00041 
00047 size_t vtkParse_MangledLiteral(const char *name, char *new_name);
00048 
00049 #ifdef __cplusplus
00050 } /* extern "C" */
00051 #endif
00052 
00053 #endif