Allow declaring C++ classes in Cython files.
authorRobert Bradshaw <robertwb@gmail.com>
Tue, 21 Aug 2012 05:37:51 +0000 (22:37 -0700)
committerRobert Bradshaw <robertwb@gmail.com>
Tue, 21 Aug 2012 08:38:27 +0000 (01:38 -0700)
commit3e25a38819b4e8ea54dbce64841fca74caa05cd3
tree32fdd0af3240757617dd5b19abeef9c0a0428739
parentce8776b31bf0259978e1cace3fbcff50c582216e
Allow declaring C++ classes in Cython files.

This is necessary to use some C++ APIs, and ugly if not impossible
to work around using cname specifiers and external files.
Cython/Compiler/ExprNodes.py
Cython/Compiler/ModuleNode.py
Cython/Compiler/Nodes.py
Cython/Compiler/ParseTreeTransforms.py
Cython/Compiler/Parsing.py
Cython/Compiler/PyrexTypes.py
Cython/Compiler/Symtab.py
Cython/Compiler/Visitor.py