-
Notifications
You must be signed in to change notification settings - Fork 131
Expand file tree
/
Copy pathclasses_type.h
More file actions
31 lines (23 loc) · 1.21 KB
/
classes_type.h
File metadata and controls
31 lines (23 loc) · 1.21 KB
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
#ifndef CLASSES_TYPE_H
#define CLASSES_TYPE_H
Type TYPEget_ancestor( Type );
const char * TypeName( Type t );
const char * TypeDescriptorName( Type );
char * TypeDescription( const Type t );
const char * AccessType( Type t );
const char * TYPEget_ctype( const Type t );
void TYPEPrint( const Type type, FILES *files, Schema schema );
void TYPEprint_descriptions( const Type, FILES *, Schema );
void TYPEprint_definition( Type, FILES *, Schema );
void TYPEprint_typedefs( Type, FILE * );
void TYPEprint_new( const Type type, FILE* create, Schema schema, bool needWR );
void TYPEprint_init( const Type type, FILE * header, FILE * impl, Schema schema );
void TYPEenum_inc_print( const Type type, FILE * inc );
void TYPEenum_lib_print( const Type type, FILE * f );
void TYPEselect_print( Type, FILES *, Schema );
void TYPEselect_init_print( const Type type, FILE* f );
void TYPEselect_inc_print( const Type type, FILE * f );
void TYPEselect_lib_print( const Type type, FILE * f );
void AGGRprint_init( FILE * header, FILE * impl, const Type t, const char * var_name, const char * aggr_name );
void print_typechain( FILE * header, FILE * impl, const Type t, char * buf, size_t buflen, Schema schema, const char * type_name );
#endif