mirror of
https://github.com/ruby-opencv/ruby-opencv
synced 2023-03-27 23:22:12 -04:00
34 lines
631 B
C
34 lines
631 B
C
|
/************************************************************
|
||
|
|
||
|
gui.h -
|
||
|
|
||
|
$Author: lsxi $
|
||
|
|
||
|
Copyright (C) 2005-2006 Masakazu Yonekura
|
||
|
|
||
|
************************************************************/
|
||
|
#ifdef HAVE_CALLBACK_H
|
||
|
|
||
|
#define __NAMESPACE_BEGIN_GUI namespace mGUI{
|
||
|
#define __NAMESPACE_END_GUI }
|
||
|
|
||
|
#ifndef RUBY_OPENCV_GUI_H
|
||
|
#define RUBY_OPENCV_GUI_H
|
||
|
|
||
|
#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
|
||
|
|
||
|
#endif // HAVE_CALLBACK_H
|