mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
19 lines
592 B
C++
19 lines
592 B
C++
|
// ------------------------------------------------------------------------------------------------
|
||
|
#include "PocoLib/Foundation.hpp"
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
namespace SqMod {
|
||
|
|
||
|
// ------------------------------------------------------------------------------------------------
|
||
|
|
||
|
|
||
|
// ================================================================================================
|
||
|
void Register_POCO_Foundation(HSQUIRRELVM vm)
|
||
|
{
|
||
|
Table ns(vm);
|
||
|
|
||
|
RootTable(vm).Bind(_SC("SqPOCO"), ns);
|
||
|
}
|
||
|
|
||
|
} // Namespace:: SqMod
|