我正在尝试创建QList
自定义对象,但无法这样做。我尝试这样做时收到的编译错误是:
error: symbol(s) not found for architecture x86_64 (file not found)
我能够创建QList
自定义对象的指针,以及原始数据类型的指针。正如文档中所说,我知道QList
支持做我想做的事情。
我正在使用 Mac OS X 10.7.5、Qt 5.0.1 和 Qt Creator 2.6.2。
代码:
QList<MyClass> my_list;