Embind: Add string argument to allow_subclass docs

This commit is contained in:
William Furr 2014-10-29 17:40:28 -04:00 коммит произвёл Alon Zakai
Родитель 8a87789a34
Коммит 9a29be5bd7
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -421,7 +421,7 @@ implemented in JavaScript.
EMSCRIPTEN_BINDINGS(interface) {
class_<Interface>("Interface")
.function("invoke", &Interface::invoke, pure_virtual())
.allow_subclass<InterfaceWrapper>()
.allow_subclass<InterfaceWrapper>("InterfaceWrapper")
;
}
@ -500,7 +500,7 @@ implementation:
EMSCRIPTEN_BINDINGS(interface) {
class_<Base>("Base")
.allow_subclass<BaseWrapper>()
.allow_subclass<BaseWrapper>("BaseWrapper")
.function("invoke", optional_override([](Base& self, const std::string& str) {
return self.Base::invoke(str);
}))