Automation of LV2 plugin properties.
[ardour.git] / libs / ardour / ardour / scene_change.h
index b81766b0eaf67b4a8194c7df457485fc279e6d17..1f856beedfd29c52bd3233ea5fd139bcba9414e9 100644 (file)
@@ -30,17 +30,11 @@ namespace ARDOUR
 class SceneChange : public PBD::Stateful
 {
   public:
-        SceneChange (framepos_t t) : _time (t) {};
+        SceneChange () {};
         virtual ~SceneChange () {};
 
-       void set_time (framepos_t);
-       framepos_t time() const { return _time; }
-
        static boost::shared_ptr<SceneChange> factory (const XMLNode&, int version);
        static std::string xml_node_name;
-
-    private:
-       framepos_t _time;
 };
 
 } /* namespace */