Hi All,
i've the following c++ code i need to process via qtjambi generator


template <typename T> class SingletonTemplate
{
    // implementation of a 
singleton 
}

namespace Application
{
 class ContactsManager : public QObject , 
public SingletonTemplate<Application::ContactsManager>
    {
        Q_OBJECT
                
friend class SingletonTemplate<ContactsManager>;

        // implementation 


    }
}

in the type system file i have

<interface-type name="
SingletonTemplate&lt;Application::ContactsManager&gt;" />
<object-type name="
Application::ContactsManager">

but the generator is not happy about this and 
reports:
class not found for setup inheritance 'SingletonTemplate<Application::
ContactsManager>'

how could i solve this issue template/multiple inheritance 
issue ?

Thanks in advance
Giorgio

_______________________________________________
Qt-jambi-interest mailing list
[email protected]
http://lists.trolltech.com/mailman/listinfo/qt-jambi-interest

Reply via email to