VTK
vtkParseMangle.h
Go to the documentation of this file.
1 /*=========================================================================
2 
3  Program: Visualization Toolkit
4  Module: vtkParseMangle.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 (c) 2011 David Gobbi.
17 
18  Contributed to the VisualizationToolkit by the author in May 2011
19  under the terms of the Visualization Toolkit 2008 copyright.
20 -------------------------------------------------------------------------*/
21 
26 #ifndef VTK_PARSE_MANGLE_H
27 #define VTK_PARSE_MANGLE_H
28 
29 #include <stddef.h>
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
40 size_t vtkParse_MangledTypeName(const char *name, char *new_name);
41 
47 size_t vtkParse_MangledLiteral(const char *name, char *new_name);
48 
49 #ifdef __cplusplus
50 } /* extern "C" */
51 #endif
52 
53 #endif
size_t vtkParse_MangledTypeName(const char *name, char *new_name)
This file contains utilities doing name mangling.
size_t vtkParse_MangledLiteral(const char *name, char *new_name)
Generate a mangled name for a literal.