Hello, I'm trying to use open inventor with open cascade in my
application.
I'm using VC++ 2003 and I added these lib in the linker tab of the
project settings:
TKBRep.lib TKernel.lib TKMath.lib
Then I added these 2 files:
--------------------------------------------------------------------------------
OCCShapeContainer.h:
--------------------------------------------------------------------------------
#ifndef OCCSHAPECONTAINER_H
#define OCCSHAPECONTAINER_H
#include <vector>
#include <TopoDS_Shape.hxx>
class OCCShapeContainer
{
public:
OCCShapeContainer(void);
~OCCShapeContainer(void);
private:
vector<TopoDS_Shape> shapeVector;
};
#endif
--------------------------------------------------------------------------------
OCCShapeContainer.cpp
--------------------------------------------------------------------------------
#include "occshapecontainer.h"
OCCShapeContainer::OCCShapeContainer(void){
}
OCCShapeContainer::~OCCShapeContainer(void){
}
I can build, but when I try to run or debug the application I obtain
this error:
"Unable to find entry point ??0exception@[EMAIL PROTECTED]
in DLL
INV505D.DLL"
Can any one help me??