Properly revert FormatSpec changes on "cancel"
[ardour.git] / gtk2_ardour / progress_reporter.h
index 6426f8f1aaaa7933ebb06572ac2a6072c14d4bab..2afa4ade560890cb2dd502cb62ab28a898a601b0 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __ardour_progress_reporter_h__
+#define __ardour_progress_reporter_h__
+
 #include "ardour/progress.h"
 
 /** A parent class for classes which can report progress on something */
@@ -25,7 +28,7 @@ class ProgressReporter : public ARDOUR::Progress
 public:
        ProgressReporter ();
        virtual ~ProgressReporter ();
-       
+
 private:
        void set_overall_progress (float);
 
@@ -34,3 +37,5 @@ private:
         */
        virtual void update_progress_gui (float p) = 0;
 };
+
+#endif