Templates: fix unintended commit from debugging
[ardour.git] / gtk2_ardour / main_clock.h
index fc9075432ff3044181960452a3dd5b34a5408e1e..28cc98850652f75f6c9e9a3802f5a0572f8635f7 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __gtk_ardour_main_clock_h__
+#define __gtk_ardour_main_clock_h__
+
 #include "audio_clock.h"
 
 /** A simple subclass of AudioClock that adds a few things to its context menu:
 class MainClock : public AudioClock
 {
 public:
-       MainClock (const std::string& clock_name, bool is_transient, const std::string& widget_name,
-                  bool editable, bool follows_playhead, bool primary, bool duration = false, bool with_info = false);
+       MainClock (const std::string& clock_name, const std::string& widget_name, bool primary);
+       framepos_t absolute_time () const;
+       void set_session (ARDOUR::Session *s);
 
 private:
-       
+
        // Editor *_editor;
 
        void build_ops_menu ();
@@ -38,6 +42,7 @@ private:
        void edit_current_meter ();
        void insert_new_tempo ();
        void insert_new_meter ();
-       framepos_t absolute_time () const;
        bool _primary;
 };
+
+#endif // __gtk_ardour_main_clock_h__