摘要: #include <emscripten/bind.h> #include <string> using namespace emscripten; class baseClass { int age; std::string name; public: baseClass(int age, std 阅读全文
posted @ 2020-07-13 12:45 猫影 阅读(113) 评论(0) 推荐(0) 编辑
摘要: #include <emscripten/bind.h> #include <string> using namespace emscripten; class baseClass { int age; std::string name; public: baseClass(int age, std 阅读全文
posted @ 2020-07-13 12:45 猫影 阅读(119) 评论(0) 推荐(0) 编辑
摘要: #include <emscripten/bind.h> #include <memory> using namespace emscripten; class Class { public: Class(int x) : x(x) {} inline int getX () const { ret 阅读全文
posted @ 2020-07-13 12:38 猫影 阅读(242) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace emscripten;class Class {public: Class(int x) : x(x) {} inline int ... 阅读全文
posted @ 2020-07-13 12:38 猫影 阅读(272) 评论(0) 推荐(0) 编辑
摘要: #include using namespace emscripten;class xClass {public: xClass(int x) : x(x) {} inline int get... 阅读全文
posted @ 2020-07-13 12:36 猫影 阅读(255) 评论(1) 推荐(0) 编辑
摘要: #include <emscripten/bind.h> using namespace emscripten; class xClass { public: xClass(int x) : x(x) {} inline int getX () const { return x; } inline 阅读全文
posted @ 2020-07-13 12:36 猫影 阅读(322) 评论(0) 推荐(0) 编辑
摘要: #include <emscripten/bind.h> #include <string> using namespace emscripten; class Interface { public: Interface() = default; // virtual std::string inv 阅读全文
posted @ 2020-07-13 12:34 猫影 阅读(217) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace emscripten;class Interface {public: Interface() = default; // ... 阅读全文
posted @ 2020-07-13 12:34 猫影 阅读(115) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace emscripten;class BaseClass {public: BaseClass() = default; // ... 阅读全文
posted @ 2020-07-13 12:27 猫影 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include <emscripten/bind.h> #include <string> using namespace emscripten; class BaseClass { public: BaseClass() = default; // virtual std::string inv 阅读全文
posted @ 2020-07-13 12:27 猫影 阅读(172) 评论(0) 推荐(0) 编辑