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
83650b30
Commit
83650b30
authored
Aug 05, 2014
by
Nikias Bassen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Properly rename header guards according to C++ standard
parent
1c0b659b
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
36 additions
and
36 deletions
+36
-36
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
Key.h
include/plist/Key.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
Uid.h
include/plist/Uid.h
+3
-3
No files found.
include/plist/Array.h
View file @
83650b30
...
...
@@ -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
include/plist/Boolean.h
View file @
83650b30
...
...
@@ -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
include/plist/Data.h
View file @
83650b30
...
...
@@ -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
include/plist/Date.h
View file @
83650b30
...
...
@@ -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
include/plist/Dictionary.h
View file @
83650b30
...
...
@@ -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
include/plist/Integer.h
View file @
83650b30
...
...
@@ -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
include/plist/Key.h
View file @
83650b30
...
...
@@ -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
include/plist/Node.h
View file @
83650b30
...
...
@@ -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
include/plist/Real.h
View file @
83650b30
...
...
@@ -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
include/plist/String.h
View file @
83650b30
...
...
@@ -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
include/plist/Structure.h
View file @
83650b30
...
...
@@ -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
include/plist/Uid.h
View file @
83650b30
...
...
@@ -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
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