Graphite Version 3
An experimental 3D geometry processing program
|
Converts LUA variables to C++ variables. More...
#include <geogram/lua/lua_wrap.h>
Public Member Functions | |
lua_to (lua_State *L, int idx) | |
lua_to constructor. | |
operator T () const | |
Gets the converted value. | |
Static Public Member Functions | |
static bool | can_convert (lua_State *L, int idx) |
Tests whether a LUA variable can be converted to a C++ variable. | |
Protected Attributes | |
T | x_ |
Converts LUA variables to C++ variables.
This version is a placeholder, the actual implementation is done in the template specializations.
Definition at line 243 of file lua_wrap.h.
|
inline |
lua_to constructor.
Does the actual conversion. The converted variable is memorized in a member. It can be accesed by a conversion operator. Supposing that my_function() takes a std::string and an int as arguments, it can be called as follows:
[in] | L | a pointer to the LUA state. |
[in] | idx | the index of the variable to be converted. |
Definition at line 257 of file lua_wrap.h.
|
inlinestatic |
Tests whether a LUA variable can be converted to a C++ variable.
[in] | L | a pointer to the LUA state. |
[in] | idx | the index of the variable to be converted. |
true | if the LUA variable can be converted to a C++ variable. |
false | otherwise. |
Definition at line 275 of file lua_wrap.h.
|
inline |
|
protected |
Definition at line 289 of file lua_wrap.h.