summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
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/Key.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/Uid.h6
12 files changed, 36 insertions, 36 deletions
diff --git a/include/plist/Array.h b/include/plist/Array.h
index fd4dea8..5c65588 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 PLIST__ARRAY_H 22#ifndef PLIST_ARRAY_H
23#define PLIST__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>
@@ -52,4 +52,4 @@ private :
52 52
53}; 53};
54 54
55#endif // PLIST__ARRAY_H 55#endif // PLIST_ARRAY_H
diff --git a/include/plist/Boolean.h b/include/plist/Boolean.h
index 731eb9e..48489da 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 PLIST__BOOLEAN_H 22#ifndef PLIST_BOOLEAN_H
23#define PLIST__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 @@ public :
45 45
46}; 46};
47 47
48#endif // PLIST__BOOLEAN_H 48#endif // PLIST_BOOLEAN_H
diff --git a/include/plist/Data.h b/include/plist/Data.h
index f8ae715..3eb6031 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 PLIST__DATA_H 22#ifndef PLIST_DATA_H
23#define PLIST__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 @@ public :
46 46
47}; 47};
48 48
49#endif // PLIST__DATA_H 49#endif // PLIST_DATA_H
diff --git a/include/plist/Date.h b/include/plist/Date.h
index ea0b270..e505b53 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 PLIST__DATE_H 22#ifndef PLIST_DATE_H
23#define PLIST__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>
@@ -47,4 +47,4 @@ public :
47 47
48}; 48};
49 49
50#endif // PLIST__DATE_H 50#endif // PLIST_DATE_H
diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h
index 9958f44..c270de3 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 PLIST__DICTIONARY_H 22#ifndef PLIST_DICTIONARY_H
23#define PLIST__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>
@@ -60,4 +60,4 @@ private :
60 60
61}; 61};
62 62
63#endif // PLIST__DICTIONARY_H 63#endif // PLIST_DICTIONARY_H
diff --git a/include/plist/Integer.h b/include/plist/Integer.h
index 7cdf0df..86af0dd 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 PLIST__INTEGER_H 22#ifndef PLIST_INTEGER_H
23#define PLIST__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 @@ public :
45 45
46}; 46};
47 47
48#endif // PLIST__INTEGER_H 48#endif // PLIST_INTEGER_H
diff --git a/include/plist/Key.h b/include/plist/Key.h
index cfb4d29..3de09cf 100644
--- a/include/plist/Key.h
+++ b/include/plist/Key.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 PLIST__KEY_H 22#ifndef PLIST_KEY_H
23#define PLIST__KEY_H 23#define PLIST_KEY_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26#include <string> 26#include <string>
@@ -46,4 +46,4 @@ public :
46 46
47}; 47};
48 48
49#endif // PLIST__KEY_H 49#endif // PLIST_KEY_H
diff --git a/include/plist/Node.h b/include/plist/Node.h
index 1da9ee1..fdd26ee 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 PLIST__NODE_H 22#ifndef PLIST_NODE_H
23#define PLIST__NODE_H 23#define PLIST_NODE_H
24 24
25#include <plist/plist.h> 25#include <plist/plist.h>
26 26
@@ -53,4 +53,4 @@ private:
53 53
54}; 54};
55 55
56#endif // PLIST__NODE_H 56#endif // PLIST_NODE_H
diff --git a/include/plist/Real.h b/include/plist/Real.h
index 7d6f8e2..a89eb4a 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 PLIST__REAL_H 22#ifndef PLIST_REAL_H
23#define PLIST__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 @@ public :
45 45
46}; 46};
47 47
48#endif // PLIST__REAL_H 48#endif // PLIST_REAL_H
diff --git a/include/plist/String.h b/include/plist/String.h
index bd8680d..a1906aa 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 PLIST__STRING_H 22#ifndef PLIST_STRING_H
23#define PLIST__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 @@ public :
46 46
47}; 47};
48 48
49#endif // PLIST__STRING_H 49#endif // PLIST_STRING_H
diff --git a/include/plist/Structure.h b/include/plist/Structure.h
index ace8b5c..8e609da 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 PLIST__STRUCTURE_H 22#ifndef PLIST_STRUCTURE_H
23#define PLIST__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>
@@ -56,4 +56,4 @@ private:
56 56
57}; 57};
58 58
59#endif // PLIST__STRUCTURE_H 59#endif // PLIST_STRUCTURE_H
diff --git a/include/plist/Uid.h b/include/plist/Uid.h
index 62a49e7..e11b022 100644
--- a/include/plist/Uid.h
+++ b/include/plist/Uid.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 PLIST__UID_H 22#ifndef PLIST_UID_H
23#define PLIST__UID_H 23#define PLIST_UID_H
24 24
25#include <plist/Node.h> 25#include <plist/Node.h>
26 26
@@ -45,4 +45,4 @@ public :
45 45
46}; 46};
47 47
48#endif // PLIST__UID_H 48#endif // PLIST_UID_H