mirror of
https://github.com/peterbraden/node-opencv.git
synced 2025-12-08 19:45:55 +00:00
23 lines
351 B
C++
23 lines
351 B
C++
#ifndef __NODE_OPENCV_H__
|
|
#define __NODE_OPENCV_H__
|
|
|
|
#include <v8.h>
|
|
#include <node.h>
|
|
#include <node_object_wrap.h>
|
|
#include <node_version.h>
|
|
#include <cv.h>
|
|
#include <highgui.h>
|
|
#include <string.h>
|
|
|
|
using namespace v8;
|
|
using namespace node;
|
|
|
|
class OpenCV: public node::ObjectWrap{
|
|
public:
|
|
static void Init(Handle<Object> target);
|
|
};
|
|
|
|
|
|
#endif
|
|
|