mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
30 lines
581 B
C
30 lines
581 B
C
/************************************************************
|
|
|
|
gui.h -
|
|
|
|
$Author: lsxi $
|
|
|
|
Copyright (C) 2005-2006 Masakazu Yonekura
|
|
|
|
************************************************************/
|
|
#ifndef RUBY_OPENCV_GUI_H
|
|
#define RUBY_OPENCV_GUI_H
|
|
|
|
#define __NAMESPACE_BEGIN_GUI namespace mGUI{
|
|
#define __NAMESPACE_END_GUI }
|
|
|
|
#include "opencv.h"
|
|
|
|
__NAMESPACE_BEGIN_OPENCV
|
|
__NAMESPACE_BEGIN_GUI
|
|
|
|
VALUE rb_module_GUI();
|
|
void define_ruby_module();
|
|
|
|
VALUE rb_wait_key(int argc, VALUE *argv, VALUE self);
|
|
|
|
__NAMESPACE_END_GUI
|
|
__NAMESPACE_END_OPENCV
|
|
|
|
#endif // RUBY_OPENCV_GUI_H
|
|
|