Qt 링커 오류 : "vtable에 대한 정의되지 않은 참조" 이 질문에 이미 답변이 있습니다. vtable에 대한 정의되지 않은 참조입니다. Qt 프로젝트 컴파일 시도 17 답변 이것은 내 헤더입니다. #ifndef BARELYSOCKET_H #define BARELYSOCKET_H #include //! The First Draw of the BarelySocket! class BarelySocket: public QObject { Q_OBJECT public: BarelySocket(); public slots: void sendMessage(Message aMessage); signals: void reciveMessage(Message aMessage); private: // QVector re..