Hello,

 

I want to use sip on a class which uses member function templates. Any suggestions on the best approach?

 

Here’s a snippet from the class – the SetValue() and GetValue() member functions are the problematic ones!

 

class Record

{

public:

                        Record(UtTable& , const u32 );

                       

                        template<class ITEM_TYPE>

                        UtStatus           SetValue(const u32, const ITEM_TYPE&);

                       

                        template<class ITEM_TYPE>

                        UtStatus           GetValue(const u32, ITEM_TYPE&);

                       

};

 

Thanks,

Kristine

Reply via email to