error C2338: No Q_OBJECT in the class with the signal (NodeCreator.cpp)
Posted xiaoxiaoshuai-
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了error C2338: No Q_OBJECT in the class with the signal (NodeCreator.cpp)相关的知识,希望对你有一定的参考价值。
在Qt中,当派生类需要用到信号与槽机制时,有两个要求。
1、该类派生自QObject类。
2、类中有Q_OBJECT宏。
本次报错的原因就是因为没有在类中添加Q_OBJECT宏。
而我的出错原因更傻逼,清清楚楚知道需要添加Q_OBJECT宏,但是却手残写成了这个。
以上是关于error C2338: No Q_OBJECT in the class with the signal (NodeCreator.cpp)的主要内容,如果未能解决你的问题,请参考以下文章