Свойства и функции привязки ошибок в emscripten - PullRequest
0 голосов
/ 03 января 2019

Я пытаюсь использовать emscripten для компиляции класса c ++ и выставления привязок. Я сталкиваюсь с ошибкой от компилятора.

#include <emscripten/bind.h>
#include <emscripten/emscripten.h>


using namespace emscripten;

class  MyClass {
private:
    int _year;
    int _month;
    int _day;
public:
    MyClass() { }
    MyClass(int year, int month, int day);

    int getMonth();
    void setMonth(int);
    int getYear();
    void setYear(int);
    int getDay();
    void setDay(int);
    bool isLeapYear();
    int daysInMonth();

    void increment();
    void decrement();
};

EMSCRIPTEN_BINDINGS(my_sample_class) {
class_<MyClass>("MyClass") 
    .constructor<>()
    .constructor<int, int, int>()
    .function("getMonth",  &MyClass::getMonth)
    .function("increment", &MyClass::increment)
    .function("decrement", &MyClass::decrement)
    .property("year",&MyClass::getYear, &MyClass::setYear )
    //.property("month", &MyClass::getMonth, &MyClass::setMonth )
    //.property("day",&MyClass::getDay, &MyClass::setDay )
    ;
}

У компилятора нет проблем с конструкторами или привязкой функции. Я столкнулся с проблемой с привязкой свойства. У меня есть только один комментарий, чтобы минимизировать ошибки, которые я получаю (они просто повторяют одну и ту же ошибку, но для разных строк). Вот ошибки, которые я получаю обратно.

In file included from MyDate.cpp:1:
In file included from ./MyDate.h:2:

emscripten/bind.h:1393:26: error: implicit instantiation of undefined template 'emscripten::internal::GetterPolicy<int (MyClass::*)()>'

        auto gter = &GP::template get<ClassType>;
                     ^
./MyDate.h:37:6: note: in instantiation of function template specialization 'emscripten::class_<MyClass, emscripten::internal::NoBaseClass>::property<int (MyClass::*)(), void (MyClass::*)(int)>' requested here
.property("year",&MyClass::getYear, &MyClass::setYear )
 ^ 



 emscripten/bind.h:569:16: note: template is declared here

    struct GetterPolicy;
           ^
emscripten/bind.h:1399:33: error: implicit instantiation of undefined template 'emscripten::internal::GetterPolicy<int (MyClass::*)()>'
            TypeID<typename GP::ReturnType>::get(),
                            ^
emscripten\1.38.21\system\include\emscripten/bind.h:569:16: note: template is declared here
    struct GetterPolicy;
           ^
2 errors generated.
shared:ERROR: compiler frontend failed to generate LLVM bitcode, halting

Я посмотрел примеры привязки, и, похоже, я использую правильный синтаксис. Кто-нибудь имеет представление о том, что я могу делать неправильно?

1 Ответ

0 голосов
/ 03 января 2019

Обнаружена проблема!

Функции геттера должны быть помечены как const, чтобы избежать этих ошибок.Пример: int getMonth () const;

...