Hi
I want to create several classes as subclasses of QObject so that I can use the QPointer smart pointer.
But when I subclass a Contacts class and build the code, I get this error:
"QObject is an inaccessible base of Contacts".
The constructor is simple enough:
Contacts::Contacts()
:QObject()
{
}
What am I missing?
Cheers
Jeff
Bookmarks