Ok, so I keep finding all kinds of information on this, and I know how it all works, but my brain is just not wrapping around how to accomplish this....
I want to dynamically allocate to the variable of an already created object.
Like say I have class: ObjA, ObjA has some simple variable in it called PT1, PT1 is waiting to become a pointer to a Struct that has been dynamically allocated. In this way a specific group of data is then attached to the object.
How would I go about doing something like this?
EDIT: Nvm, I figured it out... templates rule!
For those interested and maybe for some critiques, here's how I did it: