PIP Lua Module
This commit is contained in:
59
lib/lua/3rd/LuaBridge/LuaBridge.h
Normal file
59
lib/lua/3rd/LuaBridge/LuaBridge.h
Normal file
@@ -0,0 +1,59 @@
|
||||
//------------------------------------------------------------------------------
|
||||
/*
|
||||
https://github.com/vinniefalco/LuaBridge
|
||||
|
||||
Copyright 2019, Dmitry Tarakanov
|
||||
Copyright 2012, Vinnie Falco <vinnie.falco@gmail.com>
|
||||
Copyright 2007, Nathan Reed
|
||||
|
||||
License: The MIT License (http://www.opensource.org/licenses/mit-license.php)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
//==============================================================================
|
||||
|
||||
#pragma once
|
||||
|
||||
// All #include dependencies are listed here
|
||||
// instead of in the individual header files.
|
||||
//
|
||||
|
||||
#define LUABRIDGE_MAJOR_VERSION 2
|
||||
#define LUABRIDGE_MINOR_VERSION 3
|
||||
#define LUABRIDGE_VERSION 203
|
||||
|
||||
#ifndef LUA_VERSION_NUM
|
||||
#error "Lua headers must be included prior to LuaBridge ones"
|
||||
#endif
|
||||
|
||||
|
||||
#include <LuaBridge/detail/LuaHelpers.h>
|
||||
#include <LuaBridge/detail/TypeTraits.h>
|
||||
#include <LuaBridge/detail/TypeList.h>
|
||||
#include <LuaBridge/detail/FuncTraits.h>
|
||||
#include <LuaBridge/detail/Constructor.h>
|
||||
#include <LuaBridge/detail/ClassInfo.h>
|
||||
#include <LuaBridge/detail/LuaException.h>
|
||||
#include <LuaBridge/detail/LuaRef.h>
|
||||
#include <LuaBridge/detail/Iterator.h>
|
||||
#include <LuaBridge/detail/Userdata.h>
|
||||
#include <LuaBridge/detail/CFunctions.h>
|
||||
#include <LuaBridge/detail/Security.h>
|
||||
#include <LuaBridge/detail/Stack.h>
|
||||
#include <LuaBridge/detail/Namespace.h>
|
||||
Reference in New Issue
Block a user