diff options
Diffstat (limited to 'layer.h')
-rw-r--r-- | layer.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -18,6 +18,15 @@ class Layer { SDL_mutex *mutex; public: + /* + * Every derived class must have a static CtorInfo struct "ctor_info" + * and a static "ctor_osc" method + */ + struct CtorInfo { + const char *name; + const char *types; + }; + SLIST_ENTRY(Layer) layers; char *name; |