Good day,
This should be simple, but i just can't remember how to do it right now...
If i have a pointer to a class for example
RSVP* L4Proto = new RSVP();
how do i get the actual RSVP class from that so that i may be able to pass it to a function for example.....and not just the pointer to it (L4Proto)?.....
passing the pointer may be more efficient but i am using previously implemented classes which takes the actual object and not a pointer as its argument......