anisette is done, how to sign?

This commit is contained in:
2026-01-07 18:23:30 +02:00
parent 2b91057589
commit defb60ac53
32 changed files with 455 additions and 61 deletions

View File

@@ -218,7 +218,10 @@ void CJSONObject::CopyTo( IJSONObject *pObject )
void CJSONObject::Free()
{
for ( auto &param: m_params )
{
JSONManager()->FreeValue(param.m_pValue);
}
}
abstract_class CJSONManager: public IJSONManager
@@ -247,7 +250,8 @@ IJSONObject *CJSONManager::CreateObject( )
void CJSONManager::FreeObject( IJSONObject *pObject )
{
pObject->Free();
delete (CJSONObject*)pObject;
}
IJSONArray *CJSONManager::CreateArray( )
@@ -267,7 +271,8 @@ IJSONValue *CJSONManager::CreateValue( )
void CJSONManager::FreeValue( IJSONValue *pValue )
{
pValue->Free();
delete (CJSONValue*)pValue;
}
#define NEXT_TOKEN() \