I want to call qt class in symbian project. but dont success.
for example:
in the symbian project, I defined one qt class inherited QObject.
class QMyclass : public QObject
{
Q_OBJECT
....
};
i want to call this QT class.
class CCallclass : public CBase
{
static NewL();
....
void ConstructL();
QMyclass *iQtclass;
}
CCallclass::ConstructL()
{
iQtclass = new QMyclass();
}
now, I can complie successfully this project, but it dont run. ererytime, when i debug to "iQtclass = new QMyclass", it reported error(KERN-EXEC 3).
I think it caused by "new" founction. in the symbian project, it only accepted class inherited from CBase. but QMyclass inherited from QObjec.
please help me. many thanks!






