Changeset 269 for trunk/idl-compiler/include/parser.h
- Timestamp:
- Mar 25, 2007, 2:35:35 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/idl-compiler/include/parser.h
r267 r269 80 80 { 81 81 gchar* chrName; /* Name of this interface */ 82 gchar *chrParent; /* Name of parent interface */82 gchar* chrParent; /* Name of parent interface */ 83 83 gulong ulMajor; /* Class version */ 84 84 gulong ulMinor; /* Class version */ 85 85 gboolean fIsForwardDeclaration; 86 gchar* chrMetaClass; /* Pointer to metaclass name or NULL*/ 86 87 GPtrArray *pMethodArray; 87 88 GPtrArray *pOverrideArray; … … 129 130 IDL_SYMBOL_OVERRIDE, 130 131 IDL_SYMBOL_REGINTERFACE, /* Used for registered interfaces */ 132 IDL_SYMBOL_CLSNAME, 133 IDL_SYMBOL_OLDMETACLASS, 134 IDL_SYMBOL_METACLASS, 131 135 IDL_SYMBOL_NATIVE, 132 136 /* Some GLib types */ … … 140 144 IDL_SYMBOL_BOOLEAN, 141 145 IDL_SYMBOL_STRING, 146 IDL_SYMBOL_LONG, 147 IDL_SYMBOL_UNSIGNED, 142 148 /* Direction of method parameters */ 143 149 IDL_SYMBOL_IN, … … 172 178 void parseHash(void); 173 179 void parsePreprocLineInfo(void); 174 180 void parseMetaClass(void);
Note:
See TracChangeset
for help on using the changeset viewer.