Removed unused session_control.cc.
[ardour.git] / libs / ardour / curve.cc
index 977b6dfd7be5088fc88df669e594497e57564a71..5a1dc108f86062181c638dfc8dc80dcfa30c8d25 100644 (file)
@@ -18,7 +18,6 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id$
 */
 
 #include <iostream>
@@ -41,7 +40,7 @@ using namespace sigc;
 using namespace PBD;
 
 Curve::Curve (double minv, double maxv, double canv, bool nostate)
-       : AutomationList (canv, nostate)
+       : AutomationList (canv)
 {
        min_yval = minv;
        max_yval = maxv;
@@ -61,6 +60,11 @@ Curve::Curve (const Curve& other, double start, double end)
        max_yval = other.max_yval;
 }
 
+Curve::Curve (const XMLNode& node)
+       : AutomationList (node)
+{
+}
+
 Curve::~Curve ()
 {
 }
@@ -430,14 +434,6 @@ Curve::point_factory (const ControlEvent& other) const
        return new CurvePoint (other.when, other.value);
 }
 
-Change
-Curve::restore_state (StateManager::State& state)
-{
-       mark_dirty ();
-       return AutomationList::restore_state (state);
-}
-
-
 extern "C" {
 
 void