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
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