" addProperty"出错在Luabridge

时间:2015-07-24 11:56:49

标签: c++ lua luabridge

我有一些非常简单的源代码来公开一个简单的Foo类。

main.cpp中:

#include <iostream>

#include <lua.hpp>
#include <LuaBridge.h>

class Foo
{
    private:
        int number = 0;

    public:
        void setNumber(const int& newNumber) {number = newNumber;}
        int getNumber() {return number;}
};

int main()
{
    //Expose the API:
    lua_State* L = luaL_newstate();
    luaL_openlibs(L);
    luabridge::getGlobalNamespace(L)
    .beginClass<Foo>("Foo")
        .addConstructor<void(*)(void)>()
        .addProperty("number", &Foo::getNumber, &Foo::setNumber)
    .endClass();
}

不幸的是,我收到了这个错误:

24 error: no matching function for call to ‘luabridge::Namespace::Class<Foo>::addProperty(const char [7], int (Foo::*)(), void (Foo::*)(const int&))’

我不知道问题所在,但我必须使用addProperty,否则代码看起来不正确

1 个答案:

答案 0 :(得分:1)

addProperty的模板:

template <class TG, class TS>
Class <T>& addProperty (char const* name, TG (T::* get) () const, void (T::* set) (TS))

要求getter是const成员函数。 将吸气剂更改为:

int getNumber() const { return number; }

删除了LuaBridge 2.0中的错误