Fix formatting samplecnt_t (aka int64_t aka long long int)
[ardour.git] / gtk2_ardour / point_selection.h
index d0ad08e602c91146d716a0b76cc7656677655ad3..de818ae87be63af0846869e25334f6aaa8e8fb91 100644 (file)
@@ -1,11 +1,31 @@
+/*
+ * Copyright (C) 2007-2009 Paul Davis <paul@linuxaudiosystems.com>
+ * Copyright (C) 2009-2012 David Robillard <d@drobilla.net>
+ * Copyright (C) 2010-2012 Carl Hetherington <carl@carlh.net>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program; if not, write to the Free Software Foundation, Inc.,
+ * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+
 #ifndef __ardour_gtk_point_selection_h__
 #define __ardour_gtk_point_selection_h__
 
 #include <list>
 
-#include "automation_selectable.h"
+class ControlPoint;
 
-struct PointSelection : public std::list<AutomationSelectable> 
+class PointSelection : public std::list<ControlPoint *>
 {
 };