1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2024-11-08 08:47:17 +01:00
SqMod/source/Event/Local.cpp
2015-10-02 01:34:28 +03:00

74 lines
2.1 KiB
C++

#include "Event/Local.hpp"
// ------------------------------------------------------------------------------------------------
namespace SqMod {
// ------------------------------------------------------------------------------------------------
LocalEvent::LocalEvent() noexcept
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent::LocalEvent(SQInt32 type) noexcept
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent::LocalEvent(SQInt32 type, bool suspended) noexcept
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent::LocalEvent(const LocalEvent & o) noexcept
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent::LocalEvent(LocalEvent && o) noexcept
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent::~LocalEvent()
{
}
// ------------------------------------------------------------------------------------------------
LocalEvent & LocalEvent::operator = (const LocalEvent & o) noexcept
{
return *this;
}
// ------------------------------------------------------------------------------------------------
LocalEvent & LocalEvent::operator = (LocalEvent && o) noexcept
{
return *this;
}
// ------------------------------------------------------------------------------------------------
// ================================================================================================
bool Register_LocalEvent(HSQUIRRELVM vm)
{
// Output debugging information
LogDbg("Beginning registration of <LocalEvent> type");
// Attempt to register the specified type
Sqrat::RootTable(vm).Bind(_SC("LocalEvent"), Sqrat::Class< LocalEvent >(vm, _SC("LocalEvent"))
.Ctor()
);
// Output debugging information
LogDbg("Registration of <CAutomobile> type was successful");
// Registration succeeded
return true;
}
} // Namespace:: SqMod