Hello,
I have a problem wrapping the following header file using Py++. The class
"Derived" defines a local typedef "Helper" which has different meanings for
each template parameter "T".
Wrapped header:
-- test.h --
#ifndef TEST_H
#define TEST_H
template class Base{
public:
};
On Fri, Aug 7, 2009 at 12:27 PM, Razvan Yorik wrote:
>
> Hello,
> I have a problem wrapping the following header file using Py++. The class
> "Derived" defines a local typedef "Helper" which has different meanings
> for each template parameter "T".
>
> Wrapped header:
> -- test.h
Hello All,
I am trying to implement plug-ins system using BOOST Python but a little
stuck. I've read documentation a couple of times and have feeling that
missed something pretty simple.
Below simplified version what I am trying to do:
// abstract Base interface class
class IBasePlugins
{
public: