Commit 83650b30 authored by Nikias Bassen's avatar Nikias Bassen

Properly rename header guards according to C++ standard

parent 1c0b659b
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__ARRAY_H
#define PLIST__ARRAY_H
#ifndef PLIST_ARRAY_H
#define PLIST_ARRAY_H
#include <plist/Structure.h>
#include <vector>
......@@ -52,4 +52,4 @@ private :
};
#endif // PLIST__ARRAY_H
#endif // PLIST_ARRAY_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__BOOLEAN_H
#define PLIST__BOOLEAN_H
#ifndef PLIST_BOOLEAN_H
#define PLIST_BOOLEAN_H
#include <plist/Node.h>
......@@ -45,4 +45,4 @@ public :
};
#endif // PLIST__BOOLEAN_H
#endif // PLIST_BOOLEAN_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__DATA_H
#define PLIST__DATA_H
#ifndef PLIST_DATA_H
#define PLIST_DATA_H
#include <plist/Node.h>
#include <vector>
......@@ -46,4 +46,4 @@ public :
};
#endif // PLIST__DATA_H
#endif // PLIST_DATA_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__DATE_H
#define PLIST__DATE_H
#ifndef PLIST_DATE_H
#define PLIST_DATE_H
#include <plist/Node.h>
#include <ctime>
......@@ -47,4 +47,4 @@ public :
};
#endif // PLIST__DATE_H
#endif // PLIST_DATE_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__DICTIONARY_H
#define PLIST__DICTIONARY_H
#ifndef PLIST_DICTIONARY_H
#define PLIST_DICTIONARY_H
#include <plist/Structure.h>
#include <map>
......@@ -60,4 +60,4 @@ private :
};
#endif // PLIST__DICTIONARY_H
#endif // PLIST_DICTIONARY_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__INTEGER_H
#define PLIST__INTEGER_H
#ifndef PLIST_INTEGER_H
#define PLIST_INTEGER_H
#include <plist/Node.h>
......@@ -45,4 +45,4 @@ public :
};
#endif // PLIST__INTEGER_H
#endif // PLIST_INTEGER_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__KEY_H
#define PLIST__KEY_H
#ifndef PLIST_KEY_H
#define PLIST_KEY_H
#include <plist/Node.h>
#include <string>
......@@ -46,4 +46,4 @@ public :
};
#endif // PLIST__KEY_H
#endif // PLIST_KEY_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__NODE_H
#define PLIST__NODE_H
#ifndef PLIST_NODE_H
#define PLIST_NODE_H
#include <plist/plist.h>
......@@ -53,4 +53,4 @@ private:
};
#endif // PLIST__NODE_H
#endif // PLIST_NODE_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__REAL_H
#define PLIST__REAL_H
#ifndef PLIST_REAL_H
#define PLIST_REAL_H
#include <plist/Node.h>
......@@ -45,4 +45,4 @@ public :
};
#endif // PLIST__REAL_H
#endif // PLIST_REAL_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__STRING_H
#define PLIST__STRING_H
#ifndef PLIST_STRING_H
#define PLIST_STRING_H
#include <plist/Node.h>
#include <string>
......@@ -46,4 +46,4 @@ public :
};
#endif // PLIST__STRING_H
#endif // PLIST_STRING_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__STRUCTURE_H
#define PLIST__STRUCTURE_H
#ifndef PLIST_STRUCTURE_H
#define PLIST_STRUCTURE_H
#include <plist/Node.h>
#include <string>
......@@ -56,4 +56,4 @@ private:
};
#endif // PLIST__STRUCTURE_H
#endif // PLIST_STRUCTURE_H
......@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef PLIST__UID_H
#define PLIST__UID_H
#ifndef PLIST_UID_H
#define PLIST_UID_H
#include <plist/Node.h>
......@@ -45,4 +45,4 @@ public :
};
#endif // PLIST__UID_H
#endif // PLIST_UID_H
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment