Re: [PyQt] [SIP] compilation error with namespace

2011-02-06 Thread Phil Thompson
On Sun, 6 Feb 2011 21:06:49 +0100, Kermit wrote: > hi, > > i've a problem with a simple Sip compilation ( and my first tentative ) > > a simple class: > > //__ > #ifndef Vector_h__ > #define Vector_h__ > > namespace KitCG > { > > class Vec2 > { > public: > //--

[PyQt] [SIP] compilation error with namespace

2011-02-06 Thread Kermit
hi, i've a problem with a simple Sip compilation ( and my first tentative ) a simple class: //__ #ifndef Vector_h__ #define Vector_h__ namespace KitCG { class Vec2 { public: //--- // Access to elements //--- float x; float y; /