[pygccxml-commit] SF.net SVN: pygccxml: [223] pygccxml_dev/pygccxml/parser
Brought to you by:
mbaas,
roman_yakovenko
From: <rom...@us...> - 2006-06-18 05:23:26
|
Revision: 223 Author: roman_yakovenko Date: 2006-06-17 22:23:18 -0700 (Sat, 17 Jun 2006) ViewCVS: http://svn.sourceforge.net/pygccxml/?rev=223&view=rev Log Message: ----------- Committing changes from Janes, Matthias adding treatment for Java native types Modified Paths: -------------- pygccxml_dev/pygccxml/declarations/type_visitor.py pygccxml_dev/pygccxml/parser/linker.py Modified: pygccxml_dev/pygccxml/declarations/type_visitor.py =================================================================== --- pygccxml_dev/pygccxml/declarations/type_visitor.py 2006-06-18 05:22:04 UTC (rev 222) +++ pygccxml_dev/pygccxml/declarations/type_visitor.py 2006-06-18 05:23:18 UTC (rev 223) @@ -72,7 +72,31 @@ def visit_complex_float(self): raise NotImplementedError() + + def visit_jbyte(self): + raise NotImplementedError() + def visit_jshort(self): + raise NotImplementedError() + + def visit_jint(self): + raise NotImplementedError() + + def visit_jlong(self): + raise NotImplementedError() + + def visit_jfloat(self): + raise NotImplementedError() + + def visit_jdouble(self): + raise NotImplementedError() + + def visit_jchar(self): + raise NotImplementedError() + + def visit_jboolean(self): + raise NotImplementedError() + def visit_volatile( self ): raise NotImplementedError() Modified: pygccxml_dev/pygccxml/parser/linker.py =================================================================== --- pygccxml_dev/pygccxml/parser/linker.py 2006-06-18 05:22:04 UTC (rev 222) +++ pygccxml_dev/pygccxml/parser/linker.py 2006-06-18 05:23:18 UTC (rev 223) @@ -193,6 +193,30 @@ def visit_complex_float(self): pass + def visit_jbyte(self): + pass + + def visit_jshort(self): + pass + + def visit_jint(self): + pass + + def visit_jlong(self): + pass + + def visit_jfloat(self): + pass + + def visit_jdouble(self): + pass + + def visit_jchar(self): + pass + + def visit_jboolean(self): + pass + def visit_volatile( self ): self.__link_compound_type() This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |