pmed / v8pp

Bind C++ functions and classes into V8 JavaScript engine
http://pmed.github.io/v8pp/
Other
898 stars 120 forks source link

class object in class #32

Closed tjgerrylee closed 7 years ago

tjgerrylee commented 7 years ago

Hi, for class like this: struct A { int a; };

struct B { A aa; int b; }; how can i wrap class B as v8 object? then i can use it like " b = new b(); b.aa.a = 10;"

TIA