From 522c2378a11fc88b3f44ca993f66b004309f9e04 Mon Sep 17 00:00:00 2001 From: Guilherme Maciel Ferreira Date: Mon, 21 Feb 2011 14:43:48 +0100 Subject: [PATCH] Aesthetic changes on include guards --- src/config/configuration.h | 6 +++--- src/config/configurationreader.h | 6 +++--- src/ping/boostpinger.h | 6 +++--- src/ping/host.h | 6 +++--- src/ping/pingcheck.h | 6 +++--- src/ping/pinger.h | 6 +++--- src/ping/pingmanager.h | 6 +++--- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/src/config/configuration.h b/src/config/configuration.h index 984fc59..78c9c2f 100644 --- a/src/config/configuration.h +++ b/src/config/configuration.h @@ -1,5 +1,5 @@ -#ifndef CONFIGURATION_H_ -#define CONFIGURATION_H_ +#ifndef CONFIGURATION_H +#define CONFIGURATION_H #include #include @@ -24,4 +24,4 @@ private: }; -#endif /* CONFIGURATION_H_ */ +#endif /* CONFIGURATION_H */ diff --git a/src/config/configurationreader.h b/src/config/configurationreader.h index dce0c01..969cfe2 100644 --- a/src/config/configurationreader.h +++ b/src/config/configurationreader.h @@ -1,5 +1,5 @@ -#ifndef CONFIGURATIONREADER_H_ -#define CONFIGURATIONREADER_H_ +#ifndef CONFIGURATIONREADER_H +#define CONFIGURATIONREADER_H #include #include @@ -34,4 +34,4 @@ private: const std::string default_config_file_name; }; -#endif /* CONFIGURATIONREADER_H_ */ +#endif /* CONFIGURATIONREADER_H */ diff --git a/src/ping/boostpinger.h b/src/ping/boostpinger.h index 734ca24..1374d94 100644 --- a/src/ping/boostpinger.h +++ b/src/ping/boostpinger.h @@ -1,5 +1,5 @@ -#ifndef PINGER_HPP -#define PINGER_HPP +#ifndef BOOSTPINGER_H +#define BOOSTPINGER_H #include @@ -42,4 +42,4 @@ private: }; -#endif /* PINGER_HPP */ +#endif /* BOOSTPINGER_H */ diff --git a/src/ping/host.h b/src/ping/host.h index 876f1d4..9af8e8b 100644 --- a/src/ping/host.h +++ b/src/ping/host.h @@ -1,5 +1,5 @@ -#ifndef HOST_H_ -#define HOST_H_ +#ifndef HOST_H +#define HOST_H #include #include @@ -32,4 +32,4 @@ private: }; -#endif /* HOST_H_ */ +#endif /* HOST_H */ diff --git a/src/ping/pingcheck.h b/src/ping/pingcheck.h index 965cfa9..eded5c8 100644 --- a/src/ping/pingcheck.h +++ b/src/ping/pingcheck.h @@ -1,5 +1,5 @@ -#ifndef PINGCHECK_H_ -#define PINGCHECK_H_ +#ifndef PINGCHECK_H +#define PINGCHECK_H #include @@ -23,4 +23,4 @@ private: }; -#endif /* PINGCHECK_H_ */ +#endif /* PINGCHECK_H */ diff --git a/src/ping/pinger.h b/src/ping/pinger.h index 9cf469c..3d90504 100644 --- a/src/ping/pinger.h +++ b/src/ping/pinger.h @@ -1,5 +1,5 @@ -#ifndef PINGER_H_ -#define PINGER_H_ +#ifndef PINGER_H +#define PINGER_H #include @@ -15,4 +15,4 @@ public: }; -#endif /* PINGER_H_ */ +#endif /* PINGER_H */ diff --git a/src/ping/pingmanager.h b/src/ping/pingmanager.h index 8619a41..536be53 100644 --- a/src/ping/pingmanager.h +++ b/src/ping/pingmanager.h @@ -1,5 +1,5 @@ -#ifndef PINGMANAGER_H_ -#define PINGMANAGER_H_ +#ifndef PINGMANAGER_H +#define PINGMANAGER_H #include "pinger.h" #include "host.h" @@ -22,4 +22,4 @@ private: }; -#endif /* PINGMANAGER_H_ */ +#endif /* PINGMANAGER_H */ -- 1.7.1