我有一个libcx3d.a,它包含我的VrmlParser类和VrmlParser使用的其他类。
我有一个main.cpp可以做到这一点:
VrmlParser vp = new VrmlParser();
double **VOB = vp.getVOB();`
我编译使用:
g++ main.cpp -o main -L. -lcx3d
我收到以下错误:
'VrmlParser' was not declared in this scope. expected ';' before vp.
'vp' was not declared in this scope.
我该怎么办?