diff options
author | 2025-04-06 12:38:45 +0200 | |
---|---|---|
committer | 2025-04-06 12:38:45 +0200 | |
commit | d031e94d7aee14c4e7646e67623c94e6164b99e3 (patch) | |
tree | 2dd944a09ff0ef4f76ce91527744e6720ecb0e90 /include | |
parent | 1aae1e5b7d8ee26c626c126fa64392a5ef949f42 (diff) | |
download | libplist-d031e94d7aee14c4e7646e67623c94e6164b99e3.tar.gz libplist-d031e94d7aee14c4e7646e67623c94e6164b99e3.tar.bz2 |
C++: Data: Add const char* constructor
Diffstat (limited to 'include')
-rw-r--r-- | include/plist/Data.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/plist/Data.h b/include/plist/Data.h index b566a6c..1de88aa 100644 --- a/include/plist/Data.h +++ b/include/plist/Data.h @@ -36,6 +36,7 @@ public : Data(const Data& d); Data& operator=(const Data& b); Data(const std::vector<char>& buff); + Data(const char* buff, uint64_t size); virtual ~Data(); Node* Clone() const; |