摘要: #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 猫影 阅读(129) 评论(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 猫影 阅读(124) 评论(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 猫影 阅读(269) 评论(0) 推荐(0)
摘要: #include #include using namespace emscripten;class Class {public: Class(int x) : x(x) {} inline int ... 阅读全文
posted @ 2020-07-13 12:38 猫影 阅读(340) 评论(0) 推荐(0)
摘要: #include using namespace emscripten;class xClass {public: xClass(int x) : x(x) {} inline int get... 阅读全文
posted @ 2020-07-13 12:36 猫影 阅读(284) 评论(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 猫影 阅读(437) 评论(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 猫影 阅读(248) 评论(0) 推荐(0)
摘要: #include #include using namespace emscripten;class Interface {public: Interface() = default; // ... 阅读全文
posted @ 2020-07-13 12:34 猫影 阅读(128) 评论(0) 推荐(0)
摘要: #include #include using namespace emscripten;class BaseClass {public: BaseClass() = default; // ... 阅读全文
posted @ 2020-07-13 12:27 猫影 阅读(88) 评论(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 猫影 阅读(188) 评论(0) 推荐(0)