]> git.tdb.fi Git - libs/gl.git/blobdiff - source/effects/effect.cpp
Support effects and subordinate sequences inside sequence templates
[libs/gl.git] / source / effects / effect.cpp
index 4ab867ff23f538a0a52fbb08e4dbe0dc750691be..05ef5a10f1c2acee31f801053ffe94fc50259d5a 100644 (file)
@@ -19,5 +19,15 @@ void Effect::disable_for_method(Tag tag)
        enabled_methods.erase(tag);
 }
 
+
+Effect::Template::Loader::Loader(Template &t, Collection &c):
+       CollectionObjectLoader<Template>(t, &c)
+{ }
+
+void Effect::Template::Loader::init_actions()
+{
+       add("content", &Template::content_name);
+}
+
 } // namespace GL
 } // namespace Msp