VrmlParser クラスと VrmlParser で使用される他のクラスを含む libcx3d.a があります。
これを行う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.
私は何をすべきか ?