X-Git-Url: http://git.draconx.ca/gitweb/gob-dx.git/blobdiff_plain/40647d7b7b7fbeae828e0a032a3c3a5f204cdfa8..f31590988781d77ff5249987801d03a986368ca2:/src/tree.h diff --git a/src/tree.h b/src/tree.h index f6b8caf..c47156f 100644 --- a/src/tree.h +++ b/src/tree.h @@ -58,6 +58,7 @@ struct _Type { int type; int stars; char *name; + char *postfix; }; enum { @@ -152,7 +153,7 @@ union _Node { Node *new_ccode(int header, GString *cbuf, int line_no); Node *new_class(char *otype, char *ptype, GList *nodes); -Node *new_type(int stars, char *name); +Node *new_type(int stars, char *name, char *postfix); Node *new_check(int chtype, char *number); Node *new_funcarg(Type *atype, char *name, GList *checks); Node *new_method(int scope, Type *mtype, char *otype, GList *gtktypes, char *id, GList *args, char *onerror, GString *cbuf,int line_no,int ccode_line, int vararg);