version 4.8.0

fix PICodeParser: complex static array dimensions, member template types for multideclaration
PIJSON::serialize and PIJSON::deserialize helpers
This commit is contained in:
2025-08-02 22:14:49 +03:00
parent cf25cacc17
commit a2c24c9f07
4 changed files with 53 additions and 37 deletions

View File

@@ -191,6 +191,12 @@ public:
static PIJSON newArray(const PIVariantVector & fields = {});
static PIJSON newString(const PIString & v = PIString());
template<typename T>
static PIJSON serialize(const T & v);
template<typename T>
static T deserialize(const PIJSON & json);
private:
static PIJSON & nullEntry();
static PIString parseName(PIString & s);