/usr/include/vtk-6.3/vtkParseData.h is in libvtk6-dev 6.3.0+dfsg1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 | /*=========================================================================
Program: Visualization Toolkit
Module: vtkParseData.h
Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
All rights reserved.
See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
This software is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE. See the above copyright notice for more information.
=========================================================================*/
/*-------------------------------------------------------------------------
Copyright (c) 2010 David Gobbi.
Contributed to the VisualizationToolkit by the author in May 2010
under the terms of the Visualization Toolkit 2008 copyright.
-------------------------------------------------------------------------*/
/*
Data structures used by vtkParse.
*/
#ifndef VTK_PARSE_DATA_H
#define VTK_PARSE_DATA_H
#include "vtkParseType.h"
#include "vtkParseString.h"
/* legacy */
#ifndef VTK_PARSE_LEGACY_REMOVE
#define MAX_ARGS 20
#endif
/**
* Access flags
*/
typedef enum _parse_access_t
{
VTK_ACCESS_PUBLIC = 0,
VTK_ACCESS_PROTECTED = 1,
VTK_ACCESS_PRIVATE = 2
} parse_access_t;
/**
* ItemType constants
*/
typedef enum _parse_item_t
{
VTK_NAMESPACE_INFO = 1,
VTK_CLASS_INFO = 2,
VTK_STRUCT_INFO = 3,
VTK_UNION_INFO = 4,
VTK_ENUM_INFO = 5,
VTK_FUNCTION_INFO = 6,
VTK_VARIABLE_INFO = 7,
VTK_CONSTANT_INFO = 8,
VTK_TYPEDEF_INFO = 9,
VTK_USING_INFO = 10
} parse_item_t;
/**
* ItemInfo just contains an index
*/
typedef struct _ItemInfo
{
parse_item_t Type;
int Index;
} ItemInfo;
/* forward declarations */
struct _ValueInfo;
struct _FunctionInfo;
struct _FileInfo;
typedef struct _ValueInfo ValueInfo;
typedef struct _FunctionInfo FunctionInfo;
typedef struct _FileInfo FileInfo;
/**
* TemplateInfo holds template definitions
*/
typedef struct _TemplateInfo
{
int NumberOfParameters;
ValueInfo **Parameters;
} TemplateInfo;
/**
* ValueInfo is for typedefs, constants, variables,
* function parameters, and return values
*
* Note that Dimensions is an array of char pointers, in
* order to support dimensions that are sized according to
* template parameter values or according to named constants.
*/
struct _ValueInfo
{
parse_item_t ItemType;
parse_access_t Access;
const char *Name;
const char *Comment;
const char *Value; /* for vars or default paramter values */
unsigned int Type; /* as defined in vtkParseType.h */
const char *Class; /* classname for type */
int Count; /* total number of values, if known */
const char *CountHint; /* hint about how to get the count */
int NumberOfDimensions; /* dimensionality for arrays */
const char **Dimensions; /* dimensions for arrays */
FunctionInfo *Function; /* for function pointer values */
TemplateInfo *Template; /* template parameters, or NULL */
int IsStatic; /* for class variables only */
int IsEnum; /* for constants only */
int IsPack; /* for pack expansions */
};
/**
* FunctionInfo is for functions and methods
*/
struct _FunctionInfo
{
parse_item_t ItemType;
parse_access_t Access;
const char *Name;
const char *Comment;
const char *Class; /* class name for methods */
const char *Signature; /* function signature as text */
TemplateInfo *Template; /* template parameters, or NULL */
int NumberOfParameters;
ValueInfo **Parameters;
ValueInfo *ReturnValue; /* NULL for constructors and destructors */
const char *Macro; /* the macro that defined this function */
const char *SizeHint; /* hint the size e.g. for operator[] */
int IsOperator;
int IsVariadic;
int IsLegacy; /* marked as a legacy method or function */
int IsStatic; /* methods only */
int IsVirtual; /* methods only */
int IsPureVirtual; /* methods only */
int IsConst; /* methods only */
int IsDeleted; /* methods only */
int IsFinal; /* methods only */
int IsExplicit; /* constructors only */
#ifndef VTK_PARSE_LEGACY_REMOVE
int NumberOfArguments; /* legacy */
unsigned int ArgTypes[MAX_ARGS]; /* legacy */
const char *ArgClasses[MAX_ARGS];/* legacy */
int ArgCounts[MAX_ARGS]; /* legacy */
unsigned int ReturnType; /* legacy */
const char *ReturnClass; /* legacy */
int HaveHint; /* legacy */
int HintSize; /* legacy */
int ArrayFailure;/* legacy */
int IsPublic; /* legacy */
int IsProtected; /* legacy */
#endif
};
/**
* UsingInfo is for using directives
*/
typedef struct _UsingInfo
{
parse_item_t ItemType;
parse_access_t Access;
const char *Name; /* null for using whole namespace */
const char *Comment;
const char *Scope; /* the namespace or class */
} UsingInfo;
/**
* ClassInfo is for classes, structs, unions, and namespaces
*/
typedef struct _ClassInfo
{
parse_item_t ItemType;
parse_access_t Access;
const char *Name;
const char *Comment;
TemplateInfo *Template;
int NumberOfSuperClasses;
const char **SuperClasses;
int NumberOfItems;
ItemInfo *Items;
int NumberOfClasses;
struct _ClassInfo **Classes;
int NumberOfFunctions;
FunctionInfo **Functions;
int NumberOfConstants;
ValueInfo **Constants;
int NumberOfVariables;
ValueInfo **Variables;
int NumberOfEnums;
struct _ClassInfo **Enums;
int NumberOfTypedefs;
ValueInfo **Typedefs;
int NumberOfUsings;
UsingInfo **Usings;
int NumberOfNamespaces;
struct _ClassInfo **Namespaces;
int IsAbstract;
int IsFinal;
int HasDelete;
} ClassInfo;
/**
* EnumInfo is for enums
* For scoped enums, the constants are in the enum itself, but for
* standard enums, the constants are at the same level as the enum.
*/
typedef struct _ClassInfo EnumInfo;
/**
* Namespace is for namespaces
*/
typedef struct _ClassInfo NamespaceInfo;
/**
* FileInfo is for header files
*/
struct _FileInfo
{
const char *FileName;
const char *NameComment;
const char *Description;
const char *Caveats;
const char *SeeAlso;
int NumberOfIncludes;
struct _FileInfo **Includes;
ClassInfo *MainClass;
NamespaceInfo *Contents;
StringCache *Strings;
};
#ifdef __cplusplus
extern "C" {
#endif
/**
* Initializer methods
*/
/*@{*/
void vtkParse_InitFile(FileInfo *file_info);
void vtkParse_InitNamespace(NamespaceInfo *namespace_info);
void vtkParse_InitClass(ClassInfo *cls);
void vtkParse_InitFunction(FunctionInfo *func);
void vtkParse_InitValue(ValueInfo *val);
void vtkParse_InitEnum(EnumInfo *item);
void vtkParse_InitUsing(UsingInfo *item);
void vtkParse_InitTemplate(TemplateInfo *arg);
/*@}*/
/**
* Copy methods
*
* Strings are not deep-copied, they are assumed to be persistent.
*/
/*@{*/
void vtkParse_CopyNamespace(NamespaceInfo *data, const NamespaceInfo *orig);
void vtkParse_CopyClass(ClassInfo *data, const ClassInfo *orig);
void vtkParse_CopyFunction(FunctionInfo *data, const FunctionInfo *orig);
void vtkParse_CopyValue(ValueInfo *data, const ValueInfo *orig);
void vtkParse_CopyEnum(EnumInfo *data, const EnumInfo *orig);
void vtkParse_CopyUsing(UsingInfo *data, const UsingInfo *orig);
void vtkParse_CopyTemplate(TemplateInfo *data, const TemplateInfo *orig);
/*@}*/
/**
* Free methods
*
* Strings are not freed, they are assumed to be persistent.
*/
/*@{*/
void vtkParse_FreeFile(FileInfo *file_info);
void vtkParse_FreeNamespace(NamespaceInfo *namespace_info);
void vtkParse_FreeClass(ClassInfo *cls);
void vtkParse_FreeFunction(FunctionInfo *func);
void vtkParse_FreeValue(ValueInfo *val);
void vtkParse_FreeEnum(EnumInfo *item);
void vtkParse_FreeUsing(UsingInfo *item);
void vtkParse_FreeTemplate(TemplateInfo *arg);
/*@}*/
/**
* Add a string to an array of strings, grow array as necessary.
*/
void vtkParse_AddStringToArray(
const char ***valueArray, int *count, const char *value);
/**
* Expand the Item array for classes and namespaces.
*/
void vtkParse_AddItemToArray(
ItemInfo **valueArray, int *count, parse_item_t type, int idx);
/**
* Add various items to the structs.
*/
/*@{*/
void vtkParse_AddIncludeToFile(FileInfo *info, FileInfo *item);
void vtkParse_AddClassToClass(ClassInfo *info, ClassInfo *item);
void vtkParse_AddFunctionToClass(ClassInfo *info, FunctionInfo *item);
void vtkParse_AddEnumToClass(ClassInfo *info, EnumInfo *item);
void vtkParse_AddConstantToClass(ClassInfo *info, ValueInfo *item);
void vtkParse_AddVariableToClass(ClassInfo *info, ValueInfo *item);
void vtkParse_AddTypedefToClass(ClassInfo *info, ValueInfo *item);
void vtkParse_AddUsingToClass(ClassInfo *info, UsingInfo *item);
void vtkParse_AddNamespaceToNamespace(NamespaceInfo *info,NamespaceInfo *item);
void vtkParse_AddClassToNamespace(NamespaceInfo *info, ClassInfo *item);
void vtkParse_AddFunctionToNamespace(NamespaceInfo *info, FunctionInfo *item);
void vtkParse_AddEnumToNamespace(NamespaceInfo *info, EnumInfo *item);
void vtkParse_AddConstantToNamespace(NamespaceInfo *info, ValueInfo *item);
void vtkParse_AddVariableToNamespace(NamespaceInfo *info, ValueInfo *item);
void vtkParse_AddTypedefToNamespace(NamespaceInfo *info, ValueInfo *item);
void vtkParse_AddUsingToNamespace(NamespaceInfo *info, UsingInfo *item);
void vtkParse_AddParameterToFunction(FunctionInfo *info, ValueInfo *item);
void vtkParse_AddParameterToTemplate(TemplateInfo *info, ValueInfo *item);
/*@}*/
/**
* Add default constructors to a class if they do not already exist
*/
void vtkParse_AddDefaultConstructors(ClassInfo *data, StringCache *cache);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif
|