Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
5b1c3aea
Commit
5b1c3aea
authored
Oct 19, 2009
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prefix headers #ifndef with PLIST__ to make them less common.
parent
bed63139
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
33 additions
and
33 deletions
+33
-33
Array.h
include/plist/Array.h
+3
-3
Boolean.h
include/plist/Boolean.h
+3
-3
Data.h
include/plist/Data.h
+3
-3
Date.h
include/plist/Date.h
+3
-3
Dictionary.h
include/plist/Dictionary.h
+3
-3
Integer.h
include/plist/Integer.h
+3
-3
Node.h
include/plist/Node.h
+3
-3
Real.h
include/plist/Real.h
+3
-3
String.h
include/plist/String.h
+3
-3
Structure.h
include/plist/Structure.h
+3
-3
Utils.h
include/plist/Utils.h
+3
-3
No files found.
include/plist/Array.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef ARRAY_H
#define ARRAY_H
#ifndef
PLIST__
ARRAY_H
#define
PLIST__
ARRAY_H
#include <plist/Structure.h>
#include <vector>
...
...
@@ -51,4 +51,4 @@ class Array : public Structure
};
#endif // ARRAY_H
#endif //
PLIST__
ARRAY_H
include/plist/Boolean.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef BOOLEAN_H
#define BOOLEAN_H
#ifndef
PLIST__
BOOLEAN_H
#define
PLIST__
BOOLEAN_H
#include <plist/Node.h>
...
...
@@ -45,4 +45,4 @@ class Boolean : public Node
};
#endif // BOOLEAN_H
#endif //
PLIST__
BOOLEAN_H
include/plist/Data.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DATA_H
#define DATA_H
#ifndef
PLIST__
DATA_H
#define
PLIST__
DATA_H
#include <plist/Node.h>
#include <vector>
...
...
@@ -46,4 +46,4 @@ class Data : public Node
};
#endif // DATA_H
#endif //
PLIST__
DATA_H
include/plist/Date.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DATE_H
#define DATE_H
#ifndef
PLIST__
DATE_H
#define
PLIST__
DATE_H
#include <plist/Node.h>
#include <ctime>
...
...
@@ -46,4 +46,4 @@ class Date : public Node
};
#endif // DATE_H
#endif //
PLIST__
DATE_H
include/plist/Dictionary.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef DICTIONARY_H
#define DICTIONARY_H
#ifndef
PLIST__
DICTIONARY_H
#define
PLIST__
DICTIONARY_H
#include <plist/Structure.h>
#include <map>
...
...
@@ -58,4 +58,4 @@ class Dictionary : public Structure
};
#endif // DICTIONARY_H
#endif //
PLIST__
DICTIONARY_H
include/plist/Integer.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef INTEGER_H
#define INTEGER_H
#ifndef
PLIST__
INTEGER_H
#define
PLIST__
INTEGER_H
#include <plist/Node.h>
...
...
@@ -45,4 +45,4 @@ class Integer : public Node
};
#endif // INTEGER_H
#endif //
PLIST__
INTEGER_H
include/plist/Node.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef NODE_H
#define NODE_H
#ifndef
PLIST__
NODE_H
#define
PLIST__
NODE_H
#include <plist/plist.h>
...
...
@@ -46,4 +46,4 @@ class Node
};
#endif // NODE_H
#endif //
PLIST__
NODE_H
include/plist/Real.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef REAL_H
#define REAL_H
#ifndef
PLIST__
REAL_H
#define
PLIST__
REAL_H
#include <plist/Node.h>
...
...
@@ -45,4 +45,4 @@ class Real : public Node
};
#endif // REAL_H
#endif //
PLIST__
REAL_H
include/plist/String.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef STRING_H
#define STRING_H
#ifndef
PLIST__
STRING_H
#define
PLIST__
STRING_H
#include <plist/Node.h>
#include <string>
...
...
@@ -46,4 +46,4 @@ class String : public Node
};
#endif // STRING_H
#endif //
PLIST__
STRING_H
include/plist/Structure.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef STRUCTURE_H
#define STRUCTURE_H
#ifndef
PLIST__
STRUCTURE_H
#define
PLIST__
STRUCTURE_H
#include <plist/Node.h>
#include <string>
...
...
@@ -50,4 +50,4 @@ class Structure : public Node
};
#endif // STRUCTURE_H
#endif //
PLIST__
STRUCTURE_H
include/plist/Utils.h
View file @
5b1c3aea
...
...
@@ -19,8 +19,8 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef UTILS_H
#define UTILS_H
#ifndef
PLIST__
UTILS_H
#define
PLIST__
UTILS_H
#include <plist/Structure.h>
#include <string>
...
...
@@ -39,4 +39,4 @@ namespace PList
};
};
#endif // UTILS_H
#endif //
PLIST__
UTILS_H
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment