I'd like to have one instance of parent class for communication with serial port. Now child instances beside their own data also contribute to "global" send/receive queue in parent class. Now I have method in parent instance that deals with this queue. Method is inherited into child instances and when I call it - I get reference to child object, but would like to perform operations on parent instance' queue.
Now I would like somehow to get to reference of parent instance from reference of child instance that got into method. How to do this ?
Robert.