/** * This code is auto-generated; unless you know what you're doing, do not modify! **/ #ifndef WRAPPER_H #define WRAPPER_H #include #include #include "nan.h" using namespace node; using namespace v8; class Wrapper : public ObjectWrap { public: static Persistent constructor_template; static void Initialize (Handle target); void *GetValue(); static Handle New(void *raw); private: Wrapper(void *raw); static NAN_METHOD(New); static NAN_METHOD(ToBuffer); void *raw; }; #endif