Re: [C++-sig] pygccxml and template classes

2010-12-08 Thread Roman Yakovenko
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

[C++-sig] pygccxml and template classes

2010-12-08 Thread Davidson, Josh
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