mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
6c40c559e3
change how type T is gleaned from destructors and constructors in case of new syntax add a hell of a lot more examples, update and clean documentation
28 lines
472 B
C++
28 lines
472 B
C++
#define SOL_CHECK_ARGUMENTS 1
|
|
#include <sol.hpp>
|
|
|
|
#include "assert.hpp"
|
|
|
|
int main () {
|
|
struct protect_me {
|
|
int gen(int x) {
|
|
return x;
|
|
}
|
|
};
|
|
|
|
sol::state lua;
|
|
lua.open_libraries(sol::lib::base);
|
|
lua.new_usertype<protect_me>("protect_me",
|
|
"gen", sol::protect( &protect_me::gen )
|
|
);
|
|
|
|
lua.script(R"__(
|
|
pm = protect_me.new()
|
|
value = pcall(pm.gen,"wrong argument")
|
|
)__");
|
|
bool value = lua["value"];
|
|
c_assert(!value);
|
|
|
|
return 0;
|
|
}
|