Completely new type implementation. Almost everything broken. Typemaps sort of work. Tcl is the only working language module. More changes to follow over the next few days.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@651 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
84f5185008
commit
fa2942e77c
31 changed files with 2165 additions and 2095 deletions
|
|
@ -11,10 +11,10 @@ public :
|
|||
|
||||
void parse_args(int, char *argv[]);
|
||||
void parse();
|
||||
void add_native(char *, char *, DataType *, ParmList *);
|
||||
void create_function(char *, char *, DataType *, ParmList *);
|
||||
void link_variable(char *, char *, DataType *);
|
||||
void declare_const(char *, char *, DataType *, char *);
|
||||
void add_native(char *, char *, SwigType *, ParmList *);
|
||||
void create_function(char *, char *, SwigType *, ParmList *);
|
||||
void link_variable(char *, char *, SwigType *);
|
||||
void declare_const(char *, char *, SwigType *, char *);
|
||||
void initialize(void);
|
||||
void headers(void);
|
||||
void close(void);
|
||||
|
|
@ -22,28 +22,28 @@ public :
|
|||
void create_command(char *, char *);
|
||||
|
||||
void pragma(char *lang, char *code, char *value);
|
||||
void add_typedef(DataType *t, char *name);
|
||||
void add_typedef(SwigType *t, char *name);
|
||||
void cpp_open_class(char *classname, char *rename, char *ctype, int strip);
|
||||
void cpp_close_class();
|
||||
void cpp_member_func(char *name, char *iname, DataType *t, ParmList *l);
|
||||
void cpp_static_func(char *name, char *iname, DataType *t, ParmList *l);
|
||||
void cpp_member_func(char *name, char *iname, SwigType *t, ParmList *l);
|
||||
void cpp_static_func(char *name, char *iname, SwigType *t, ParmList *l);
|
||||
void cpp_constructor(char *name, char *iname, ParmList *l);
|
||||
void cpp_destructor(char *name, char *newname);
|
||||
void cpp_class_decl(char *name, char *rename, char *type);
|
||||
void cpp_inherit(char **baseclass, int);
|
||||
void cpp_variable(char *name, char *iname, DataType *t);
|
||||
void cpp_static_var(char *, char *, class DataType *);
|
||||
void cpp_declare_const(char *name, char *iname, DataType *type, char *value);
|
||||
void cpp_variable(char *name, char *iname, SwigType *t);
|
||||
void cpp_static_var(char *, char *, SwigType *);
|
||||
void cpp_declare_const(char *name, char *iname, SwigType *type, char *value);
|
||||
|
||||
/* Java Module methods */
|
||||
void emit_classdef();
|
||||
void emit_shadow_classdef();
|
||||
char *JNICALL(DOHString_or_char *func);
|
||||
char *SwigTcToJniType(DataType *t, int ret);
|
||||
char *SwigTcToJavaType(DataType *t, int ret, int inShadow);
|
||||
char *SwigTcToJniScalarType(DataType *t);
|
||||
char *JavaTypeFromTypemap(char *op, char *lang, DataType *t, char *pname);
|
||||
char *SwigTcToJniType(SwigType *t, int ret);
|
||||
char *SwigTcToJavaType(SwigType *t, int ret, int inShadow);
|
||||
char *SwigTcToJniScalarType(SwigType *t);
|
||||
char *JavaTypeFromTypemap(char *op, char *lang, SwigType *t, char *pname);
|
||||
char *makeValidJniName(char *name);
|
||||
char *JavaMethodSignature(DataType *t, int ret, int inShadow);
|
||||
char *JavaMethodSignature(SwigType *t, int ret, int inShadow);
|
||||
void writeRegisterNatives();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue