#include "OpenCV.h" class NamedWindow: public node::ObjectWrap { public: std::string winname; int flags; static Persistent constructor; static void Init(Handle target); static Handle New(const Arguments &args); NamedWindow(const std::string& winname, int flags); JSFUNC(Show); JSFUNC(Destroy); };