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