Hi,
I would like to be able to register my classes within a std::map or a vector, don't think about duplicates and such for now.
but I don't want to register it within the class constructor call or any within function of the class, somehow do it outside the class so even if I never instanciate it, I would be able to know that it exists...
example:
// Somehow, from outside the myclass, in a scope that will be called
//in the begining of the proccess, add "MyClass1" to a
//list so it can be instanciated later
class MyClass1{
}
then I would make a #define of it or if able, a template.
I don't know if I made myself clear(again)...
My point is that I need to know every class that I have without having to call every and each of them.
My idea was to create a #define to make it easier to declare the header of the class and call something that would register that specific class to a list
Can this be done or will I have to map it manually?
// desirable:
#define CLASSREGISTER(myclass) makethemagic(##myclass); class myclass {
};
I know, with that define I couldn't use inheritance etc... My point was to try to give an example of what I was thinking to create somehow...
Thanks,
Joe