Add missing include guards in libardour header files
authorTim Mayberry <mojofunk@gmail.com>
Mon, 7 Dec 2015 04:10:55 +0000 (14:10 +1000)
committerTim Mayberry <mojofunk@gmail.com>
Tue, 13 Sep 2016 04:31:35 +0000 (14:31 +1000)
libs/ardour/ardour/automation_watch.h
libs/ardour/ardour/midi_automation_list_binder.h

index 960e29943cec55b47e9b537e9747cb83b6257233..febbe1039848c279efd3e7f378dff80d53a9ddf7 100644 (file)
@@ -16,6 +16,8 @@
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
 */
+#ifndef __ardour_automation_watch_h__
+#define __ardour_automation_watch_h__
 
 #include <set>
 #include <boost/shared_ptr.hpp>
@@ -60,3 +62,5 @@ class LIBARDOUR_API AutomationWatch : public sigc::trackable, public ARDOUR::Ses
 };
 
 }
+
+#endif // __ardour_automation_watch_h__
index 241c4e73207a40991b97f3cea15c8924dc43b4ee..b5e73251e9237e332835e437c196ccacd204f6d9 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __ardour_midi_automation_list_binder_h__
+#define __ardour_midi_automation_list_binder_h__
+
 #include "pbd/memento_command.h"
 #include "evoral/Parameter.hpp"
 #include "ardour/session.h"
@@ -41,5 +44,6 @@ private:
        Evoral::Parameter _parameter;
 };
 
-}
+} // namespace ARDOUR
 
+#endif // __ardour_midi_automation_list_binder_h__