![Twisted Evil :twisted:](./images/smilies/icon_twisted.gif)
I'm French so excuse my *average ? poor ? choose for yourself* english, I'll try to explain a little more.
Imagine we are using something like a class, let's call it : modelClassA, controllerClassA, graphicalClassA (... a complete MVC view, but an answer for a single graphicalClass is like the Graal actually), and we use it into our main app to be shown.
Practically, is it possible to create children of the classA (complete MVC or graphical only) externally, let's say graphicalChildAClassA.h & .cpp, and integrate it while main app is running..?
For example, main app is a "persistent *persisting ? other word ?* world" (let's say a city), and I would like to add on the fly new models of cars (new children of the Car class). I've heard it's possible in Java, but indeed that's not my language of predilection (indeed it's a kind of... hate, so slow).
Thanks in advance for any help ("it is simply impossible" is considered as useful help... personaly with compiled code I don't see how this could work, I imagined a kind of XML full description of new caracteristics, but it's dead for specific methods I guess).
Regards !
PS : I was first thinking about it about "all-in-one app", extended on the fly and keeping modifications for the next launches, but maybe it could be easier (or possible) to make it via plug-ins...