Cann't write connect in main.cpp
Unsolved
General and Desktop
-
class Taz742 : public QObject { Q_OBJECT public: Taz742() { tm = new QTimer(); } QTimer *tm; ~Taz742() { delete tm; } public slots: void Print() { qDebug() << "Taz742"; } };
Thanks,
-
@Pradeep-Kumar
of course :))undefined reference to 'vtable for Taz742'
-
This post is deleted!
-
@L.Gogs said in Cann't write connect in main.cpp:
no no, I want to write connect into main.cpp without any other header or cpp file.
You can hack it but using a .h file is the right way and besides this approach might have issues.
I never used it as its non common to only have .cpp file outside school projects.