Commit 5b1c3aea authored by Jonathan Beck's avatar Jonathan Beck

prefix headers #ifndef with PLIST__ to make them less common.

parent bed63139
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef ARRAY_H #ifndef PLIST__ARRAY_H
#define ARRAY_H #define PLIST__ARRAY_H
#include <plist/Structure.h> #include <plist/Structure.h>
#include <vector> #include <vector>
...@@ -51,4 +51,4 @@ class Array : public Structure ...@@ -51,4 +51,4 @@ class Array : public Structure
}; };
#endif // ARRAY_H #endif // PLIST__ARRAY_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef BOOLEAN_H #ifndef PLIST__BOOLEAN_H
#define BOOLEAN_H #define PLIST__BOOLEAN_H
#include <plist/Node.h> #include <plist/Node.h>
...@@ -45,4 +45,4 @@ class Boolean : public Node ...@@ -45,4 +45,4 @@ class Boolean : public Node
}; };
#endif // BOOLEAN_H #endif // PLIST__BOOLEAN_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef DATA_H #ifndef PLIST__DATA_H
#define DATA_H #define PLIST__DATA_H
#include <plist/Node.h> #include <plist/Node.h>
#include <vector> #include <vector>
...@@ -46,4 +46,4 @@ class Data : public Node ...@@ -46,4 +46,4 @@ class Data : public Node
}; };
#endif // DATA_H #endif // PLIST__DATA_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef DATE_H #ifndef PLIST__DATE_H
#define DATE_H #define PLIST__DATE_H
#include <plist/Node.h> #include <plist/Node.h>
#include <ctime> #include <ctime>
...@@ -46,4 +46,4 @@ class Date : public Node ...@@ -46,4 +46,4 @@ class Date : public Node
}; };
#endif // DATE_H #endif // PLIST__DATE_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef DICTIONARY_H #ifndef PLIST__DICTIONARY_H
#define DICTIONARY_H #define PLIST__DICTIONARY_H
#include <plist/Structure.h> #include <plist/Structure.h>
#include <map> #include <map>
...@@ -58,4 +58,4 @@ class Dictionary : public Structure ...@@ -58,4 +58,4 @@ class Dictionary : public Structure
}; };
#endif // DICTIONARY_H #endif // PLIST__DICTIONARY_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef INTEGER_H #ifndef PLIST__INTEGER_H
#define INTEGER_H #define PLIST__INTEGER_H
#include <plist/Node.h> #include <plist/Node.h>
...@@ -45,4 +45,4 @@ class Integer : public Node ...@@ -45,4 +45,4 @@ class Integer : public Node
}; };
#endif // INTEGER_H #endif // PLIST__INTEGER_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef NODE_H #ifndef PLIST__NODE_H
#define NODE_H #define PLIST__NODE_H
#include <plist/plist.h> #include <plist/plist.h>
...@@ -46,4 +46,4 @@ class Node ...@@ -46,4 +46,4 @@ class Node
}; };
#endif // NODE_H #endif // PLIST__NODE_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef REAL_H #ifndef PLIST__REAL_H
#define REAL_H #define PLIST__REAL_H
#include <plist/Node.h> #include <plist/Node.h>
...@@ -45,4 +45,4 @@ class Real : public Node ...@@ -45,4 +45,4 @@ class Real : public Node
}; };
#endif // REAL_H #endif // PLIST__REAL_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef STRING_H #ifndef PLIST__STRING_H
#define STRING_H #define PLIST__STRING_H
#include <plist/Node.h> #include <plist/Node.h>
#include <string> #include <string>
...@@ -46,4 +46,4 @@ class String : public Node ...@@ -46,4 +46,4 @@ class String : public Node
}; };
#endif // STRING_H #endif // PLIST__STRING_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef STRUCTURE_H #ifndef PLIST__STRUCTURE_H
#define STRUCTURE_H #define PLIST__STRUCTURE_H
#include <plist/Node.h> #include <plist/Node.h>
#include <string> #include <string>
...@@ -50,4 +50,4 @@ class Structure : public Node ...@@ -50,4 +50,4 @@ class Structure : public Node
}; };
#endif // STRUCTURE_H #endif // PLIST__STRUCTURE_H
...@@ -19,8 +19,8 @@ ...@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#ifndef UTILS_H #ifndef PLIST__UTILS_H
#define UTILS_H #define PLIST__UTILS_H
#include <plist/Structure.h> #include <plist/Structure.h>
#include <string> #include <string>
...@@ -39,4 +39,4 @@ namespace PList ...@@ -39,4 +39,4 @@ namespace PList
}; };
}; };
#endif // UTILS_H #endif // PLIST__UTILS_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