summaryrefslogtreecommitdiff
path: root/libs/ardour/ardour/automation_watch.h
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2015-12-07 14:10:55 +1000
committerTim Mayberry <mojofunk@gmail.com>2016-09-13 14:31:35 +1000
commit6c2aa7ffc5bbc55b524601ca05a23d90bb303e0e (patch)
tree85296784cebc23615ed247f0d0d288313e5f290e /libs/ardour/ardour/automation_watch.h
parent37f7d7595c478f790c1f241c6f99e1593c969065 (diff)
Add missing include guards in libardour header files
Diffstat (limited to 'libs/ardour/ardour/automation_watch.h')
-rw-r--r--libs/ardour/ardour/automation_watch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libs/ardour/ardour/automation_watch.h b/libs/ardour/ardour/automation_watch.h
index 960e29943c..febbe10398 100644
--- a/libs/ardour/ardour/automation_watch.h
+++ b/libs/ardour/ardour/automation_watch.h
@@ -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__