标签:
Qt高速下载:http://pan.baidu.com/s/1bng1kwJ
AnyCAD C++ SDK高速下载:http://pan.baidu.com/s/1qWFS1tE
假如AnyCAD C++ SDK目录为 ${AnySDK}
INCLUDEPATH += ${AnySDK}/inc
win32:CONFIG(release, debug|release): LIBS += -L${AnySDK}/lib/release/ -lAnyPlatformAPI
else:win32:CONFIG(debug, debug|release): LIBS += -L${AnySDK}/lib/debug/ -lAnyPlatformAPI
win32:CONFIG(release, debug|release): LIBS += -L${AnySDK}/lib/release/ -lAnyPlatformQt
else:win32:CONFIG(debug, debug|release): LIBS += -L${AnySDK}/lib/debug/ -lAnyPlatformQt
包含头文件
#include “AnyPlatformAPI.h”
#include “AnyPlatformQtInclude.h”
#include “Widgets/AuWindow3d.h”
AnyCAD::QtUi::AuWindow3d是从QWidget继承而来,可以像使用其他Widget一样使用它。
具体参考附带示例。
其他AnyCAD::API中的建模、显示等与MFC一样使用。
标签:
原文地址:http://my.oschina.net/anycad/blog/413065