error: type 'QObject' is not a direct or virtual base of 'SendFile'
今天遇到了一个错误
详细信息如下
sendfile.cpp:3:39: error: type 'QObject' is not a direct or virtual base of 'SendFile'
在QtCreator中报错
很迷惑,为啥不能这样写
SendFile是我自己定义的一个类
问题解决方法:
加上继承QObject类
今天遇到了一个错误
详细信息如下
sendfile.cpp:3:39: error: type 'QObject' is not a direct or virtual base of 'SendFile'
在QtCreator中报错
很迷惑,为啥不能这样写
SendFile是我自己定义的一个类
加上继承QObject类