template<typename T>
class CEGUI::TplWindowRendererFactory< T >
Template based WindowRendererFactory that can be used to automatically generate a WindowRendererFactory given a WindowRenderer based class.
The advantage of this over the previous macro based methods is that there is
no longer any need to have any supporting code or structure in order to add
new WindowRenderer types to the system, rather you can just do:
CEGUI::WindowRendererManager::addFactory<TplWindowRendererFactory<MyWindowRenderer> >();
- Template Parameters
-
T | Specifies the WindowRenderer based class that the factory will create and destroy instances of. |