::find_next_event() does not need to be a pure virtual in ControlSet (it can originat...
[ardour.git] / gtk2_ardour / editor_snapshots.h
index 132c2f090cad211087700f4f4b88d291797c3f91..9f539145ce001d6ea3cbb498462e3979be7d3110 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __gtk_ardour_editor_snapshots_h__
+#define __gtk_ardour_editor_snapshots_h__
+
 #include <gtkmm/widget.h>
 #include <gtkmm/scrolledwindow.h>
 #include <gtkmm/treemodel.h>
@@ -44,9 +47,11 @@ private:
                Columns () {
                        add (visible_name);
                        add (real_name);
+                       add (time_formatted);
                }
                Gtk::TreeModelColumn<std::string> visible_name;
                Gtk::TreeModelColumn<std::string> real_name;
+               Gtk::TreeModelColumn<std::string> time_formatted;
        };
 
        Columns _columns;
@@ -60,3 +65,5 @@ private:
        void remove (std::string);
        void rename (std::string);
 };
+
+#endif // __gtk_ardour_editor_snapshots_h__