x
Yes
No
Do you want to visit DriveHQ English website?
Inicio
Características
Precios
Prueba gratuita
Software cliente
Acerca de nosotros
Servidor de archivos
|
Solución de copias de seguridad
|
Servidor FTP
|
Servidor de correo electrónico
|
Alojamiento web
|
Software cliente
Servidor de archivos
Solución de copia de seguridad
Servidor FTP
Servidor de correo electrónico
Alojamiento web
Software cliente
cln_test.cpp - Hosted on DriveHQ Cloud IT Platform
Arriba
Subir
Descargar
Compartir
Publicar
Nueva carpeta
Nuevo archivo
Copiar
Cortar
Eliminar
Pegar
Clasificación
Actualizar
Ruta de la carpeta: \\game3dprogramming\materials\GameFactory\GameFactoryDemo\references\luabind\examples\cln\cln_test.cpp
Girar
Efecto
Propiedad
Historial
#include
extern "C" { #include "lua.h" #include "lualib.h" #include "lauxlib.h" } #include
void bind_cln(lua_State* L) { using namespace luabind; using namespace cln; module(L) [ // real numbers class_
("cl_R") .def(constructor<>()) .def(constructor
()) .def(constructor
()) .def(constructor
()) .def(tostring(const_self)) .def(-self) .def(const_self + const_self) .def(const_self - const_self) .def(const_self * const_self) .def(const_self / const_self) .def(const_self <= const_self) .def(const_self < const_self) .def(const_self == const_self) .def(other
() + const_self) .def(other
() - const_self) .def(other
() * const_self) .def(other
() / const_self) .def(other
() <= const_self) .def(other
() < const_self) .def(const_self + other
()) .def(const_self - other
()) .def(const_self * other
()) .def(const_self / other
()) .def(const_self <= other
()) .def(const_self < other
()) , // rational numbers class_
("cl_RA") .def(constructor<>()) .def(constructor
()) .def(constructor
()) .def(constructor
()) .def(tostring(const_self)) .def(-self) .def(const_self + const_self) .def(const_self - const_self) .def(const_self * const_self) .def(const_self / const_self) .def(const_self <= const_self) .def(const_self < const_self) .def(const_self == const_self) .def(other
() + const_self) .def(other
() - const_self) .def(other
() * const_self) .def(other
() / const_self) .def(other
() <= const_self) .def(other
() < const_self) .def(const_self + other
()) .def(const_self - other
()) .def(const_self * other
()) .def(const_self / other
()) .def(const_self <= other
()) .def(const_self < other
()) , // integers class_
("cl_I") .def(constructor<>()) .def(constructor
()) .def(constructor
()) .def(constructor
()) .def(tostring(const_self)) .def(-self) .def(const_self + const_self) .def(const_self - const_self) .def(const_self * const_self) .def(const_self <= const_self) .def(const_self < const_self) .def(const_self == const_self) .def(other
() + const_self) .def(other
() - const_self) .def(other
() * const_self) .def(other
() <= const_self) .def(other
() < const_self) .def(const_self + other
()) .def(const_self - other
()) .def(const_self * other
()) .def(const_self <= other
()) .def(const_self < other
()) , def("factorial", &cln::factorial), def("sqrt", (const cl_R(*)(const cl_R&))&cln::sqrt) ]; } int main() { lua_State* L = lua_open(); lua_baselibopen(L); lua_mathlibopen(L); luabind::open(L); bind_cln(L); lua_dofile(L, "cln_test.lua"); lua_close(L); return 0; }
cln_test.cpp
Dirección de la página
Dirección del archivo
Anterior 1/4
Siguiente
Descargar
( 3 KB )
Comments
Total ratings:
0
Average rating:
No clasificado
of 10
Would you like to comment?
Join now
, or
Logon
if you are already a member.