I am doing a project in Objectstore. I have two classes A and B that are have a one to many relationship (no inheritance).
For example this the relation ship in classe A
os_relationship_m_1_(A, AB,B,BA,os_Set<B*>)AB;
evrything works I can compile and populate and query using cursors. But when I try to say somethin like :
if(A->A😎 trying to find the B's of te A, I get a run time error
pure virtual function called
Aborted.
Dose any one know where I can find any documentaion? That can be searched?
And yes of course I added the void vtfs to force all the virtual function tables.. In the class implementation file
I