Quote:
|
Originally Posted by aznluvsmc
It would be easier if you posted your entire code for use to see.
|
Thanks for you reply. It's a lot of code and hard to cut just needed parts so that it would still make sense.
But I draw an example UML of the situation, which should be enough to illustrate my problem.

So, I have this kind of inheritance relationship.
MyAdapter implements
Operation1() as shown in UML.
Operation2() is pure virtual function in
MyAdapter and it is implmented in subclass
SpesificAdapter. Now the problem is that I get error with the line
this->operation2(); in
MyAdaptor.