mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
Remove unnecessary files.
This commit is contained in:
parent
5dcc57a130
commit
66c731bf65
@ -105,13 +105,11 @@ add_library(SqModule MODULE SqBase.hpp Main.cpp
|
|||||||
# POCO
|
# POCO
|
||||||
PocoLib/Crypto.cpp PocoLib/Crypto.hpp
|
PocoLib/Crypto.cpp PocoLib/Crypto.hpp
|
||||||
PocoLib/Data.cpp PocoLib/Data.hpp
|
PocoLib/Data.cpp PocoLib/Data.hpp
|
||||||
PocoLib/JSON.cpp PocoLib/JSON.hpp
|
|
||||||
PocoLib/Net.cpp PocoLib/Net.hpp
|
PocoLib/Net.cpp PocoLib/Net.hpp
|
||||||
PocoLib/RegEx.cpp PocoLib/RegEx.hpp
|
PocoLib/RegEx.cpp PocoLib/RegEx.hpp
|
||||||
PocoLib/Register.cpp PocoLib/Register.hpp
|
PocoLib/Register.cpp PocoLib/Register.hpp
|
||||||
PocoLib/Time.cpp PocoLib/Time.hpp
|
PocoLib/Time.cpp PocoLib/Time.hpp
|
||||||
PocoLib/Util.cpp PocoLib/Util.hpp
|
PocoLib/Util.cpp PocoLib/Util.hpp
|
||||||
PocoLib/XML.cpp PocoLib/XML.hpp
|
|
||||||
#
|
#
|
||||||
Core.cpp Core.hpp
|
Core.cpp Core.hpp
|
||||||
Logger.cpp Logger.hpp
|
Logger.cpp Logger.hpp
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include "PocoLib/JSON.hpp"
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
namespace SqMod {
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
|
||||||
void Register_POCO_JSON(HSQUIRRELVM vm, Table &)
|
|
||||||
{
|
|
||||||
//Table ns(vm);
|
|
||||||
|
|
||||||
//RootTable(vm).Bind(_SC("SqJSON"), ns);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
|
@ -1,11 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include "Core/Common.hpp"
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
namespace SqMod {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
|
@ -7,12 +7,10 @@ namespace SqMod {
|
|||||||
// ------------------------------------------------------------------------------------------------
|
// ------------------------------------------------------------------------------------------------
|
||||||
extern void Register_POCO_Crypto(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_Crypto(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_Data(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_Data(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_JSON(HSQUIRRELVM vm, Table & ns);
|
|
||||||
extern void Register_POCO_Net(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_Net(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_RegEx(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_RegEx(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_Time(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_Time(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_Util(HSQUIRRELVM vm, Table & ns);
|
extern void Register_POCO_Util(HSQUIRRELVM vm, Table & ns);
|
||||||
extern void Register_POCO_XML(HSQUIRRELVM vm, Table & ns);
|
|
||||||
|
|
||||||
// ================================================================================================
|
// ================================================================================================
|
||||||
void Register_POCO(HSQUIRRELVM vm)
|
void Register_POCO(HSQUIRRELVM vm)
|
||||||
@ -21,12 +19,10 @@ void Register_POCO(HSQUIRRELVM vm)
|
|||||||
|
|
||||||
Register_POCO_Crypto(vm, ns);
|
Register_POCO_Crypto(vm, ns);
|
||||||
Register_POCO_Data(vm, ns);
|
Register_POCO_Data(vm, ns);
|
||||||
Register_POCO_JSON(vm, ns);
|
|
||||||
Register_POCO_Net(vm, ns);
|
Register_POCO_Net(vm, ns);
|
||||||
Register_POCO_RegEx(vm, ns);
|
Register_POCO_RegEx(vm, ns);
|
||||||
Register_POCO_Time(vm, ns);
|
Register_POCO_Time(vm, ns);
|
||||||
Register_POCO_Util(vm, ns);
|
Register_POCO_Util(vm, ns);
|
||||||
Register_POCO_XML(vm, ns);
|
|
||||||
|
|
||||||
RootTable(vm).Bind(_SC("Sq"), ns);
|
RootTable(vm).Bind(_SC("Sq"), ns);
|
||||||
}
|
}
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include "PocoLib/XML.hpp"
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
namespace SqMod {
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
|
|
||||||
|
|
||||||
// ================================================================================================
|
|
||||||
void Register_POCO_XML(HSQUIRRELVM vm, Table &)
|
|
||||||
{
|
|
||||||
//Table ns(vm);
|
|
||||||
|
|
||||||
//RootTable(vm).Bind(_SC("SqXML"), ns);
|
|
||||||
}
|
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
|
@ -1,11 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
#include "Core/Common.hpp"
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------------------------------------
|
|
||||||
namespace SqMod {
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
} // Namespace:: SqMod
|
|
Loading…
Reference in New Issue
Block a user