diff options
Diffstat (limited to 'Sluift/Lua/Check.h')
-rw-r--r-- | Sluift/Lua/Check.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Sluift/Lua/Check.h b/Sluift/Lua/Check.h index 8a8b64a..c22751b 100644 --- a/Sluift/Lua/Check.h +++ b/Sluift/Lua/Check.h @@ -1,4 +1,4 @@ /* - * Copyright (c) 2013 Remko Tronçon + * Copyright (c) 2013-2014 Remko Tronçon * Licensed under the GNU General Public License. * See the COPYING file for more information. @@ -9,4 +9,6 @@ #include <string> +#include <Swiften/Base/ByteArray.h> + struct lua_State; @@ -16,4 +18,5 @@ namespace Swift { int checkIntNumber(lua_State* L, int arg); std::string checkString(lua_State* L, int arg); + ByteArray checkByteArray(lua_State* L, int arg); void* checkUserDataRaw(lua_State* L, int arg); |