summaryrefslogtreecommitdiffstats
blob: 61658a6322985bf6ca03a08edb4da8a655c2d333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * Copyright (c) 2013-2014 Isode Limited.
 * All rights reserved.
 * See the COPYING file for more information.
 */

#pragma once

#include <string>

#include <Swiften/Base/ByteArray.h>

struct lua_State;

namespace Swift {
    namespace Lua {
        void checkType(lua_State* L, int arg, int type);
        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);

        template<typename T>
        T** checkUserData(lua_State* L, int arg) {
            return reinterpret_cast<T**>(checkUserDataRaw(L, arg));
        }
    }
}