1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-08-16 12:57:10 +02:00

Preliminary Poco::Data bindings.

This commit is contained in:
Sandu Liviu Catalin
2021-01-31 00:16:10 +02:00
parent 08ae539e74
commit be557939a9
25 changed files with 1763 additions and 7 deletions

18
module/PocoLib/JSON.cpp Normal file
View File

@@ -0,0 +1,18 @@
// ------------------------------------------------------------------------------------------------
#include "PocoLib/JSON.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
// ================================================================================================
void Register_POCO_JSON(HSQUIRRELVM vm)
{
Table ns(vm);
RootTable(vm).Bind(_SC("SqJSON"), ns);
}
} // Namespace:: SqMod