I have a C++ library I want to add to my iphone project.
In one header file I declare
@interface a
{
cppvirtualclass V;
}
This compiles fine for the iPhone device with Release settings. However it refuses to compile for the Simulator with or without debug info.
It give the error
error: type 'V' has virtual member functions.
Is there a way out of this or do I have to define only concrete C++ classes?