If all these classes belong to your own project, this means that you didn't implement number of functions:
vhtIOConn::~vhtIOConn
vhtDevice::getLastUpdateTi
...
For example:
class a
{
A(); // only declaration, no implementation
};
// client.cpp
...
A a; // compiles, but produces linker error: A::A is not implemented
Main Topics
Browse All Topics





by: AlexFMPosted on 2003-10-29 at 08:31:31ID: 9643138
You are using some classes (vhtIOConn, vhtDevice...) which are kept in some library. It is not enough to add h-file with these classes, you need to add also library file for linker. The way you do it depends on the compiler. For example, in VC++ you need to add library name to: Project - Settings - Link - Object/library modules.