summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorGravatar Jonathan Beck2009-10-19 19:56:10 +0200
committerGravatar Jonathan Beck2009-10-19 19:56:10 +0200
commit5b1c3aea5ec334fdaabb4e308995872ea7b65ffa (patch)
tree4ff11037e84e524b2591d6ce05ddd3295237817c /include
parentbed6313909eda6e06077df8cf9b345b1d64bb841 (diff)
downloadlibplist-5b1c3aea5ec334fdaabb4e308995872ea7b65ffa.tar.gz
libplist-5b1c3aea5ec334fdaabb4e308995872ea7b65ffa.tar.bz2
prefix headers #ifndef with PLIST__ to make them less common.
Diffstat (limited to 'include')
-rw-r--r--include/plist/Array.h6
-rw-r--r--include/plist/Boolean.h6
-rw-r--r--include/plist/Data.h6
-rw-r--r--include/plist/Date.h6
-rw-r--r--include/plist/Dictionary.h6
-rw-r--r--include/plist/Integer.h6
-rw-r--r--include/plist/Node.h6
-rw-r--r--include/plist/Real.h6
-rw-r--r--include/plist/String.h6
-rw-r--r--include/plist/Structure.h6
-rw-r--r--include/plist/Utils.h6
11 files changed, 33 insertions, 33 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h
index 106555d..de4860e 100644
--- a/include/plist/Array.h
+++ b/include/plist/Array.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef ARRAY_H 22#ifndef PLIST__ARRAY_H
23#define ARRAY_H 23#define PLIST__ARRAY_H
24 24
25#include <plist/Structure.h> 25#include <plist/Structure.h>
26#include <vector> 26#include <vector>
@@ -51,4 +51,4 @@ class Array : public Structure
51 51
52}; 52};
53 53
54#endif // ARRAY_H 54#endif // PLIST__ARRAY_H
diff --git a/include/plist/Boolean.h b/include/plist/Boolean.h
index 917bc9d..b902171 100644
--- a/include/plist/Boolean.h
+++ b/include/plist/Boolean.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef BOOLEAN_H 22#ifndef PLIST__BOOLEAN_H
23#define BOOLEAN_H 23#define PLIST__BOOLEAN_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26 26
@@ -45,4 +45,4 @@ class Boolean : public Node
45 45
46}; 46};
47 47
48#endif // BOOLEAN_H 48#endif // PLIST__BOOLEAN_H
diff --git a/include/plist/Data.h b/include/plist/Data.h
index 86a26d9..3db98f7 100644
--- a/include/plist/Data.h
+++ b/include/plist/Data.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef DATA_H 22#ifndef PLIST__DATA_H
23#define DATA_H 23#define PLIST__DATA_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26#include <vector> 26#include <vector>
@@ -46,4 +46,4 @@ class Data : public Node
46 46
47}; 47};
48 48
49#endif // DATA_H 49#endif // PLIST__DATA_H
diff --git a/include/plist/Date.h b/include/plist/Date.h
index 5472657..d3cd605 100644
--- a/include/plist/Date.h
+++ b/include/plist/Date.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef DATE_H 22#ifndef PLIST__DATE_H
23#define DATE_H 23#define PLIST__DATE_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26#include <ctime> 26#include <ctime>
@@ -46,4 +46,4 @@ class Date : public Node
46 46
47}; 47};
48 48
49#endif // DATE_H 49#endif // PLIST__DATE_H
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h
index 53e95e6..dbb27d1 100644
--- a/include/plist/Dictionary.h
+++ b/include/plist/Dictionary.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef DICTIONARY_H 22#ifndef PLIST__DICTIONARY_H
23#define DICTIONARY_H 23#define PLIST__DICTIONARY_H
24 24
25#include <plist/Structure.h> 25#include <plist/Structure.h>
26#include <map> 26#include <map>
@@ -58,4 +58,4 @@ class Dictionary : public Structure
58 58
59}; 59};
60 60
61#endif // DICTIONARY_H 61#endif // PLIST__DICTIONARY_H
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index 3a3a0e3..a86d0ca 100644
--- a/include/plist/Integer.h
+++ b/include/plist/Integer.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef INTEGER_H 22#ifndef PLIST__INTEGER_H
23#define INTEGER_H 23#define PLIST__INTEGER_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26 26
@@ -45,4 +45,4 @@ class Integer : public Node
45 45
46}; 46};
47 47
48#endif // INTEGER_H 48#endif // PLIST__INTEGER_H
diff --git a/include/plist/Node.h b/include/plist/Node.h
index a59d469..702d018 100644
--- a/include/plist/Node.h
+++ b/include/plist/Node.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef NODE_H 22#ifndef PLIST__NODE_H
23#define NODE_H 23#define PLIST__NODE_H
24 24
25#include <plist/plist.h> 25#include <plist/plist.h>
26 26
@@ -46,4 +46,4 @@ class Node
46 46
47}; 47};
48 48
49#endif // NODE_H 49#endif // PLIST__NODE_H
diff --git a/include/plist/Real.h b/include/plist/Real.h
index c0095e4..b011c7a 100644
--- a/include/plist/Real.h
+++ b/include/plist/Real.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef REAL_H 22#ifndef PLIST__REAL_H
23#define REAL_H 23#define PLIST__REAL_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26 26
@@ -45,4 +45,4 @@ class Real : public Node
45 45
46}; 46};
47 47
48#endif // REAL_H 48#endif // PLIST__REAL_H
diff --git a/include/plist/String.h b/include/plist/String.h
index 769c98b..64181f3 100644
--- a/include/plist/String.h
+++ b/include/plist/String.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef STRING_H 22#ifndef PLIST__STRING_H
23#define STRING_H 23#define PLIST__STRING_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26#include <string> 26#include <string>
@@ -46,4 +46,4 @@ class String : public Node
46 46
47}; 47};
48 48
49#endif // STRING_H 49#endif // PLIST__STRING_H
diff --git a/include/plist/Structure.h b/include/plist/Structure.h
index a0bdcbc..4910439 100644
--- a/include/plist/Structure.h
+++ b/include/plist/Structure.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef STRUCTURE_H 22#ifndef PLIST__STRUCTURE_H
23#define STRUCTURE_H 23#define PLIST__STRUCTURE_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26#include <string> 26#include <string>
@@ -50,4 +50,4 @@ class Structure : public Node
50 50
51}; 51};
52 52
53#endif // STRUCTURE_H 53#endif // PLIST__STRUCTURE_H
diff --git a/include/plist/Utils.h b/include/plist/Utils.h
index f3e2685..54baf02 100644
--- a/include/plist/Utils.h
+++ b/include/plist/Utils.h
@@ -19,8 +19,8 @@
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */ 20 */
21 21
22#ifndef UTILS_H 22#ifndef PLIST__UTILS_H
23#define UTILS_H 23#define PLIST__UTILS_H
24 24
25#include <plist/Structure.h> 25#include <plist/Structure.h>
26#include <string> 26#include <string>
@@ -39,4 +39,4 @@ namespace PList
39 }; 39 };
40}; 40};
41 41
42#endif // UTILS_H 42#endif // PLIST__UTILS_H