now need to get m2

This commit is contained in:
2026-01-11 15:38:14 +02:00
parent 8f022da4ef
commit 6604c67ec5
10 changed files with 177 additions and 82 deletions

View File

@@ -17,6 +17,12 @@ enum EJSONParameterType
JSON_PARAMETER_OBJECT,
};
enum EJSONParameterNotes
{
JSON_PARAMETER_NOTE_NONE = 0,
JSON_PARAMETER_NOTE_BINARY,
};
abstract_class IJSONArray
{
public:
@@ -33,6 +39,7 @@ abstract_class IJSONValue
{
public:
virtual EJSONParameterType GetType( void ) = 0;
virtual
virtual const char *GetStringValue() = 0;
virtual float GetNumberValue() = 0;
virtual bool GetBooleanValue() = 0;