error C2533: 'CompositionWidget::{ctor}' : constructors not allowed a return type

error C2533: 'CompositionWidget::{ctor}' : constructors not allowed a return type


这个报错的原因是头文件定义缺少;


class CompositionWidget: public QMainWindow

{

public:

private:

};

因为以后了最后的分行导致的。


你可能感兴趣的:(qt,constructors,all,not)