コード例 #1
0
Handle<Value> App::New(const Arguments& args) {
    HandleScope scope;

    App* obj = new App();

    obj->Wrap(args.This());

    return scope.Close(args.This());
}