From 5f38deff0b8086ea2a09712bece24afecba83c7f Mon Sep 17 00:00:00 2001
From: ilor <kailoran@gmail.com>
Date: Wed, 10 Nov 2010 15:06:21 +0100
Subject: [PATCH] prefix include guards in ops/*.h with LIBWCCL_OPS_

---
 libwccl/ops/and.h              | 6 +++---
 libwccl/ops/constant.h         | 6 +++---
 libwccl/ops/functions.h        | 6 +++---
 libwccl/ops/logicalpredicate.h | 6 +++---
 libwccl/ops/nor.h              | 6 +++---
 libwccl/ops/operator.h         | 6 +++---
 libwccl/ops/or.h               | 6 +++---
 libwccl/ops/predicate.h        | 6 +++---
 8 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/libwccl/ops/and.h b/libwccl/ops/and.h
index b6e44c6..9e3b50e 100644
--- a/libwccl/ops/and.h
+++ b/libwccl/ops/and.h
@@ -1,5 +1,5 @@
-#ifndef AND_H
-#define AND_H
+#ifndef LIBWCCL_OPS_AND_H
+#define LIBWCCL_OPS_AND_H
 
 #include <boost/foreach.hpp>
 #define foreach         BOOST_FOREACH
@@ -33,4 +33,4 @@ protected :
 };
 
 } /* end ns Wccl */
-#endif // AND_H
+#endif // LIBWCCL_OPS_AND_H
diff --git a/libwccl/ops/constant.h b/libwccl/ops/constant.h
index abb08e9..32d8a95 100644
--- a/libwccl/ops/constant.h
+++ b/libwccl/ops/constant.h
@@ -1,5 +1,5 @@
-#ifndef CONSTANT_H
-#define CONSTANT_H
+#ifndef LIBWCCL_OPS_CONSTANT_H
+#define LIBWCCL_OPS_CONSTANT_H
 
 #include <boost/scoped_ptr.hpp>
 #include <boost/concept_check.hpp>
@@ -57,4 +57,4 @@ private:
 
 } /* end ns Wccl */
 
-#endif // CONSTANT_H
+#endif // LIBWCCL_OPS_CONSTANT_H
diff --git a/libwccl/ops/functions.h b/libwccl/ops/functions.h
index 0c56fb6..9db64d7 100644
--- a/libwccl/ops/functions.h
+++ b/libwccl/ops/functions.h
@@ -1,5 +1,5 @@
-#ifndef FUNCTIONS_H
-#define FUNCTIONS_H
+#ifndef LIBWCCL_OPS_FUNCTIONS_H
+#define LIBWCCL_OPS_FUNCTIONS_H
 
 #include <boost/shared_ptr.hpp>
 #include <boost/assert.hpp>
@@ -53,4 +53,4 @@ public:
 
 } /* end ns Wccl */
 
-#endif // FUNCTIONS_H
+#endif // LIBWCCL_OPS_FUNCTIONS_H
diff --git a/libwccl/ops/logicalpredicate.h b/libwccl/ops/logicalpredicate.h
index 60427e3..384c962 100644
--- a/libwccl/ops/logicalpredicate.h
+++ b/libwccl/ops/logicalpredicate.h
@@ -1,5 +1,5 @@
-#ifndef LOGICALPREDICATE_H
-#define LOGICALPREDICATE_H
+#ifndef LIBWCCL_OPS_LOGICALPREDICATE_H
+#define LIBWCCL_OPS_LOGICALPREDICATE_H
 
 #include <vector>
 #include <boost/shared_array.hpp>
@@ -45,4 +45,4 @@ protected:
 
 } /* end ns Wccl */
 
-#endif // LOGICALPREDICATE_H
+#endif // LIBWCCL_OPS_LOGICALPREDICATE_H
diff --git a/libwccl/ops/nor.h b/libwccl/ops/nor.h
index 368c3c7..e826365 100644
--- a/libwccl/ops/nor.h
+++ b/libwccl/ops/nor.h
@@ -1,5 +1,5 @@
-#ifndef NOR_H
-#define NOR_H
+#ifndef LIBWCCL_OPS_NOR_H
+#define LIBWCCL_OPS_NOR_H
 
 #include <boost/foreach.hpp>
 #define foreach         BOOST_FOREACH
@@ -35,4 +35,4 @@ protected :
 };
 
 } /* end ns Wccl */
-#endif // NOR_H
+#endif // LIBWCCL_OPS_NOR_H
diff --git a/libwccl/ops/operator.h b/libwccl/ops/operator.h
index 46ae2ec..5997c5a 100644
--- a/libwccl/ops/operator.h
+++ b/libwccl/ops/operator.h
@@ -1,5 +1,5 @@
-#ifndef OPERATOR_H
-#define OPERATOR_H
+#ifndef LIBWCCL_OPS_OPERATOR_H
+#define LIBWCCL_OPS_OPERATOR_H
 
 #include <libcorpus2/tagset.h>
 #include <unicode/unistr.h>
@@ -47,4 +47,4 @@ public:
 
 } /* end ns Wccl */
 
-#endif // OPERATOR_H
+#endif // LIBWCCL_OPS_OPERATOR_H
diff --git a/libwccl/ops/or.h b/libwccl/ops/or.h
index f337166..574f9bd 100644
--- a/libwccl/ops/or.h
+++ b/libwccl/ops/or.h
@@ -1,5 +1,5 @@
-#ifndef OR_H
-#define OR_H
+#ifndef LIBWCCL_OPS_OR_H
+#define LIBWCCL_OPS_OR_H
 
 #include <boost/foreach.hpp>
 #define foreach         BOOST_FOREACH
@@ -33,4 +33,4 @@ protected :
 };
 
 } /* end ns Wccl */
-#endif // OR_H
+#endif // LIBWCCL_OPS_OR_H
diff --git a/libwccl/ops/predicate.h b/libwccl/ops/predicate.h
index 3c34e6b..d4d84ec 100644
--- a/libwccl/ops/predicate.h
+++ b/libwccl/ops/predicate.h
@@ -1,5 +1,5 @@
-#ifndef PREDICATE_H
-#define PREDICATE_H
+#ifndef LIBWCCL_OPS_PREDICATE_H
+#define LIBWCCL_OPS_PREDICATE_H
 
 #include <boost/shared_ptr.hpp>
 #include <boost/scoped_ptr.hpp>
@@ -27,4 +27,4 @@ public:
 
 } /* end ns Wccl */
 
-#endif // PREDICATE_H
+#endif // LIBWCCL_OPS_PREDICATE_H
-- 
GitLab