PlistCpp icon indicating copy to clipboard operation
PlistCpp copied to clipboard

C++ plist reader and writer. Supports XML and binary Apple Property list (plist) formats.

Results 12 PlistCpp issues
Sort by recently updated
recently updated
newest added

I found the apple description HEADER magic number ("bplist") file format version (currently "0?") OBJECT TABLE variable-sized objects Object Formats (marker byte followed by additional info in some cases) null...

This branch migrates most of the Boost-dependent code to C++17 and requires UnitTest++ as a system dependency instead of storing the binaries inside of Git. This allows for a cleaner...

I tried saving a `uint64_t` and got a "Can't serialize type" exception. Even if you can't support uint64_t (not sure if the plist format can represent it fully), it seems...

There seems to be no license file in the repo, which technically means that no-one is allowed to use this in anything without explicit permission (presumably not your intent). Could...

So I'm using PlistCpp for a project, however I really need Unicode support (because there are various Japanese characters in the file that I need to read) I noticed both...

Would you like to [replace any double quotes](https://github.com/animetrics/PlistCpp/blob/2f455fe58cb0f535553076a4871cfedf5fc0a09b/src/Plist.hpp#L37) by [angle brackets around file names for include statements](http://stackoverflow.com/questions/21593/what-is-the-difference-between-include-filename-and-include-filename)?

I would like to point out that an identifier like "[`__PLIST_DATE_H__`](https://github.com/animetrics/PlistCpp/blob/2f455fe58cb0f535553076a4871cfedf5fc0a09b/src/PlistDate.hpp#L28)" [does eventually not fit](https://www.securecoding.cert.org/confluence/display/cplusplus/DCL51-CPP.+Do+not+declare+or+define+a+reserved+identifier#DCL51-CPP.Donotdeclareordefineareservedidentifier-NoncompliantCodeExample%28HeaderGuard%29) to the expected naming convention of the C++ language standard. Would you like to adjust...

To express more accuractly what is stored in the plist files, keep the date within the UTC timezone, without DST conversion. If the isdst flag is set to 0 or...

i downed the zip yesterday. i need to read and write the plist file. i copyed some files to my project as the README said., also the hold include folder...

I have compiled and built plist on windows . But I need to convert binary plist to xml plist and vice versa. I have looked plisttests.cpp . I didnt get...