Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / bindings / lua / lua_utils.hpp
1 /* Copyright (c) 2010-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 /* SimGrid Lua helper functions                                             */
7
8 #ifndef LUA_UTILS_HPP
9 #define LUA_UTILS_HPP
10
11 #include <lua.h>
12 #include <string>
13
14 std::string sglua_tostring(lua_State* L, int index);
15 std::string sglua_keyvalue_tostring(lua_State* L, int key_index, int value_index);
16
17 #endif