1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 12:07:13 +01:00
SqMod/module/PocoLib/RegEx.cpp

19 lines
592 B
C++
Raw Normal View History

2021-01-31 00:16:10 +02:00
// ------------------------------------------------------------------------------------------------
2021-02-02 19:07:02 +02:00
#include "PocoLib/RegEx.hpp"
2021-01-31 00:16:10 +02:00
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
// ================================================================================================
2021-02-02 19:07:02 +02:00
void Register_POCO_RegEx(HSQUIRRELVM vm, Table &)
2021-01-31 00:16:10 +02:00
{
Table ns(vm);
2021-02-02 19:07:02 +02:00
RootTable(vm).Bind(_SC("SqRegEx"), ns);
2021-01-31 00:16:10 +02:00
}
} // Namespace:: SqMod