From 30b4a1f614c42f39eb03d30cef7e34cdff509194 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Sat, 4 Jun 2016 17:10:50 +0200 Subject: [PATCH] Made include guards consistent. --- include/plasp/pddl/expressions/And.h | 4 ++-- include/plasp/pddl/expressions/Constant.h | 4 ++-- include/plasp/pddl/expressions/Either.h | 4 ++-- include/plasp/pddl/expressions/NAry.h | 4 ++-- include/plasp/pddl/expressions/Not.h | 4 ++-- include/plasp/pddl/expressions/Or.h | 4 ++-- include/plasp/pddl/expressions/Predicate.h | 4 ++-- include/plasp/pddl/expressions/PredicateDeclaration.h | 4 ++-- include/plasp/pddl/expressions/PrimitiveType.h | 4 ++-- include/plasp/pddl/expressions/Reference.h | 4 ++-- include/plasp/pddl/expressions/Variable.h | 4 ++-- 11 files changed, 22 insertions(+), 22 deletions(-) diff --git a/include/plasp/pddl/expressions/And.h b/include/plasp/pddl/expressions/And.h index e17298b..266ac48 100644 --- a/include/plasp/pddl/expressions/And.h +++ b/include/plasp/pddl/expressions/And.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__AND_H -#define __PLASP__PDDL__EXPRESSION__AND_H +#ifndef __PLASP__PDDL__EXPRESSIONS__AND_H +#define __PLASP__PDDL__EXPRESSIONS__AND_H #include diff --git a/include/plasp/pddl/expressions/Constant.h b/include/plasp/pddl/expressions/Constant.h index cd80e6e..939afca 100644 --- a/include/plasp/pddl/expressions/Constant.h +++ b/include/plasp/pddl/expressions/Constant.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__CONSTANT_H -#define __PLASP__PDDL__EXPRESSION__CONSTANT_H +#ifndef __PLASP__PDDL__EXPRESSIONS__CONSTANT_H +#define __PLASP__PDDL__EXPRESSIONS__CONSTANT_H #include #include diff --git a/include/plasp/pddl/expressions/Either.h b/include/plasp/pddl/expressions/Either.h index 6db4c8c..36e846c 100644 --- a/include/plasp/pddl/expressions/Either.h +++ b/include/plasp/pddl/expressions/Either.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__EITHER_H -#define __PLASP__PDDL__EXPRESSION__EITHER_H +#ifndef __PLASP__PDDL__EXPRESSIONS__EITHER_H +#define __PLASP__PDDL__EXPRESSIONS__EITHER_H #include diff --git a/include/plasp/pddl/expressions/NAry.h b/include/plasp/pddl/expressions/NAry.h index cfb1a70..0399390 100644 --- a/include/plasp/pddl/expressions/NAry.h +++ b/include/plasp/pddl/expressions/NAry.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__N_ARY_H -#define __PLASP__PDDL__EXPRESSION__N_ARY_H +#ifndef __PLASP__PDDL__EXPRESSIONS__N_ARY_H +#define __PLASP__PDDL__EXPRESSIONS__N_ARY_H #include #include diff --git a/include/plasp/pddl/expressions/Not.h b/include/plasp/pddl/expressions/Not.h index e5121da..c91a825 100644 --- a/include/plasp/pddl/expressions/Not.h +++ b/include/plasp/pddl/expressions/Not.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__NOT_H -#define __PLASP__PDDL__EXPRESSION__NOT_H +#ifndef __PLASP__PDDL__EXPRESSIONS__NOT_H +#define __PLASP__PDDL__EXPRESSIONS__NOT_H #include #include diff --git a/include/plasp/pddl/expressions/Or.h b/include/plasp/pddl/expressions/Or.h index 1d69bd1..a33c4d6 100644 --- a/include/plasp/pddl/expressions/Or.h +++ b/include/plasp/pddl/expressions/Or.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__OR_H -#define __PLASP__PDDL__EXPRESSION__OR_H +#ifndef __PLASP__PDDL__EXPRESSIONS__OR_H +#define __PLASP__PDDL__EXPRESSIONS__OR_H #include diff --git a/include/plasp/pddl/expressions/Predicate.h b/include/plasp/pddl/expressions/Predicate.h index 5089ff3..dde8f73 100644 --- a/include/plasp/pddl/expressions/Predicate.h +++ b/include/plasp/pddl/expressions/Predicate.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__PREDICATE_H -#define __PLASP__PDDL__EXPRESSION__PREDICATE_H +#ifndef __PLASP__PDDL__EXPRESSIONS__PREDICATE_H +#define __PLASP__PDDL__EXPRESSIONS__PREDICATE_H #include diff --git a/include/plasp/pddl/expressions/PredicateDeclaration.h b/include/plasp/pddl/expressions/PredicateDeclaration.h index 4ca023a..b9eebc4 100644 --- a/include/plasp/pddl/expressions/PredicateDeclaration.h +++ b/include/plasp/pddl/expressions/PredicateDeclaration.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__PREDICATE_DECLARATION_H -#define __PLASP__PDDL__EXPRESSION__PREDICATE_DECLARATION_H +#ifndef __PLASP__PDDL__EXPRESSIONS__PREDICATE_DECLARATION_H +#define __PLASP__PDDL__EXPRESSIONS__PREDICATE_DECLARATION_H #include diff --git a/include/plasp/pddl/expressions/PrimitiveType.h b/include/plasp/pddl/expressions/PrimitiveType.h index 87d54f9..12a7987 100644 --- a/include/plasp/pddl/expressions/PrimitiveType.h +++ b/include/plasp/pddl/expressions/PrimitiveType.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__PRIMITIVE_TYPE_H -#define __PLASP__PDDL__EXPRESSION__PRIMITIVE_TYPE_H +#ifndef __PLASP__PDDL__EXPRESSIONS__PRIMITIVE_TYPE_H +#define __PLASP__PDDL__EXPRESSIONS__PRIMITIVE_TYPE_H #include #include diff --git a/include/plasp/pddl/expressions/Reference.h b/include/plasp/pddl/expressions/Reference.h index ab09b5a..489ffd0 100644 --- a/include/plasp/pddl/expressions/Reference.h +++ b/include/plasp/pddl/expressions/Reference.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__REFERENCE_H -#define __PLASP__PDDL__EXPRESSION__REFERENCE_H +#ifndef __PLASP__PDDL__EXPRESSIONS__REFERENCE_H +#define __PLASP__PDDL__EXPRESSIONS__REFERENCE_H #include #include diff --git a/include/plasp/pddl/expressions/Variable.h b/include/plasp/pddl/expressions/Variable.h index 0f3900e..01e8297 100644 --- a/include/plasp/pddl/expressions/Variable.h +++ b/include/plasp/pddl/expressions/Variable.h @@ -1,5 +1,5 @@ -#ifndef __PLASP__PDDL__EXPRESSION__VARIABLE_H -#define __PLASP__PDDL__EXPRESSION__VARIABLE_H +#ifndef __PLASP__PDDL__EXPRESSIONS__VARIABLE_H +#define __PLASP__PDDL__EXPRESSIONS__VARIABLE_H #include