]> git.tdb.fi Git - libs/gl.git/blobdiff - source/builders/sequencebuilder.h
Add debug name capability to more classes
[libs/gl.git] / source / builders / sequencebuilder.h
index 739cc5edf4fd076e532aef5a4795caf06d0f50f5..d696dbf888df9f8c0cc8f800a21035a3a9739bb1 100644 (file)
@@ -20,6 +20,7 @@ private:
        const SequenceTemplate &tmpl;
        std::map<std::string, Renderable *> renderables;
        std::map<std::string, PostProcessor *> postprocessors;
+       std::string debug_name;
 
 public:
        SequenceBuilder(const SequenceTemplate &);
@@ -27,6 +28,8 @@ public:
        void set_renderable(const std::string &, Renderable &);
        void set_postprocessor(const std::string &, PostProcessor &);
 
+       void set_debug_name(const std::string &);
+
        void build(Sequence &) const;
        Sequence *build(unsigned, unsigned) const;
        Sequence *build(const View &) const;