I'm having some trouble getting pyccxml to parse specialized classes. Consider
the following simple header file:
#ifndef TEMPLATECLASS_HPP_
#define TEMPLATECLASS_HPP_
template
class TemplateClass {
public:
TemplateClass(){}
protected:
int x;
Type1 y;
Type2 z;
};
#endif
N
On Wed, Dec 8, 2010 at 9:40 AM, Davidson, Josh wrote:
> I'm having some trouble getting pyccxml to parse specialized classes.
> Consider the following simple header file:
>
>
> #ifndef TEMPLATECLASS_HPP_
> #define TEMPLATECLASS_HPP_
>
> template
> class TemplateClass {
>
...
> };
>
> #endif
There seems to be a problem with the example on
http://www.boost.org/doc/libs/1_45_0/libs/python/doc/v2/exception_translator.html
when I compile it I get the following message:
--
bradb...@apl-9232eef971d ~/pycppad/boost