summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-11-23 17:20:33 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-11-23 17:20:33 +0000
commit23f91595b3ffa08fc137f802619db6a28656ab30 (patch)
tree63409548ebf5d29b4d5e48d3793a384df4233f7d /libs
parent8c4a23cfc2d779931194cfb09f6db8eee95a1490 (diff)
add guard #ifdefs
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@10794 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs')
-rw-r--r--libs/pbd/pbd/copyfile.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/pbd/pbd/copyfile.h b/libs/pbd/pbd/copyfile.h
index 74bdf4516c..7cee7697ef 100644
--- a/libs/pbd/pbd/copyfile.h
+++ b/libs/pbd/pbd/copyfile.h
@@ -17,9 +17,14 @@
*/
+#ifndef __pbd_copyfile_h__
+#define __pbd_copyfile_h__
+
#include <string>
namespace PBD {
int copy_file (const std::string& from, const std::string& to);
}
+
+#endif /* __pbd_copyfile_h__ */