From d031e94d7aee14c4e7646e67623c94e6164b99e3 Mon Sep 17 00:00:00 2001 From: guyingzhao Date: Sun, 6 Apr 2025 12:38:45 +0200 Subject: C++: Data: Add const char* constructor --- include/plist/Data.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/plist/Data.h') 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& buff); + Data(const char* buff, uint64_t size); virtual ~Data(); Node* Clone() const; -- cgit v1.1-32-gdbae