summaryrefslogtreecommitdiff
path: root/gtk2_ardour/automation_line.cc
diff options
context:
space:
mode:
authorHans Fugal <hans@fugal.net>2006-08-03 21:54:14 +0000
committerHans Fugal <hans@fugal.net>2006-08-03 21:54:14 +0000
commitb0b723445816bc968a6a183c6619fccc61e82859 (patch)
treeacea74f2808f94f09492bfa5c09163ba6ec3a8cd /gtk2_ardour/automation_line.cc
parent1f1c4981de73b13d0b7617d8ebe89d9f22dddec3 (diff)
r260@gandalf: fugalh | 2006-08-03 15:53:50 -0600
It compiles and runs and seems to still work. Still needed is the actual serialization. Time to merge back to trunk so things can be tested by all. git-svn-id: svn://localhost/ardour2/branches/undo@754 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/automation_line.cc')
-rw-r--r--gtk2_ardour/automation_line.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/gtk2_ardour/automation_line.cc b/gtk2_ardour/automation_line.cc
index a8f2952ed9..4cf6779c98 100644
--- a/gtk2_ardour/automation_line.cc
+++ b/gtk2_ardour/automation_line.cc
@@ -1267,3 +1267,15 @@ AutomationLine::hide_all_but_selected_control_points ()
}
}
}
+
+XMLNode &AutomationLine::get_state(void)
+{
+ // TODO
+ return alist.get_state();
+}
+
+int AutomationLine::set_state(const XMLNode &node)
+{
+ // TODO
+ alist.set_state(node);
+}