2013-11-04 22:38:49 +00:00
|
|
|
/*
|
|
|
|
Copyright (c) 2013 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
*/
|
|
|
|
#ifdef LEAN_USE_LUA
|
|
|
|
#include <lua.hpp>
|
|
|
|
namespace lean {
|
2013-11-05 03:45:15 +00:00
|
|
|
class options;
|
2013-11-04 22:38:49 +00:00
|
|
|
void open_options(lua_State * L);
|
2013-11-05 03:45:15 +00:00
|
|
|
bool is_options(lua_State * L, int idx);
|
|
|
|
options & to_options(lua_State * L, int idx);
|
2013-11-04 22:38:49 +00:00
|
|
|
}
|
|
|
|
#endif
|