1

我想使用 QCustomPlot 的功能从我的 openCV 项目中得出一些结果。

我没有找到将 QCustomPlot 包含到我的 Microsoft Visual Studio 2010 中的方法。我已将 cpp 和 h 文件包含或处理到我的项目中。但是,我认为我仍然缺少关于它的链接器和附加依赖项(.lib 文件)

1>moc_ex4.obj : error LNK2019: unresolved external symbol "public: void __thiscall ex4::plot_graphs(void)" (?plot_graphs@ex4@@QAEXXZ) referenced in function "private: static void __cdecl ex4::qt_static_metacall(class QObject *,enum QMetaObject::Call,int,void * *)" (?qt_static_metacall@ex4@@CAXPAVQObject@@W4Call@QMetaObject@@HPAPAX@Z)
1>C:\Users\310114602\Documents\Visual Studio 2010\Projects\ex4_120313\Win32\Debug\\ex4.exe : fatal error LNK1120: 1 unresolved externals

我搜索了它,但没有结果。

我该去哪里下载?

4

1 回答 1

3

It looks like you either didn't moc your cpp file or you simply forgot to compile and link against the moc generated .cpp file.

于 2013-03-13T11:17:59.780 回答