mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
486086ffe0
notably, test normal + single + generated + Lua 5.3.5 only once, then only run the runtime_test and compile_test for normal for all other permutations to help increase text matrix throughput
20 lines
420 B
C++
20 lines
420 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
#include <sol/sol.hpp>
|
|
|
|
#include <assert.hpp>
|
|
#include <iostream>
|
|
|
|
int main(int, char*[]) {
|
|
std::cout << "=== lua inheritance ===" << std::endl;
|
|
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base);
|
|
|
|
/* This example is currently under construction.
|
|
For inheritance and classes within Lua,
|
|
consider using kikito's middleclass
|
|
-- https://github.com/kikito/middleclass */
|
|
|
|
return 0;
|
|
}
|