1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

renamee cCvError::raise_cverror to cCvError::raise, and added raise_cverror to cvutils.h (shortcut macro of cCvError::raise)

This commit is contained in:
ser1zw 2011-07-12 02:30:10 +09:00
parent ec43f609c4
commit d983d80fa6
4 changed files with 8 additions and 4 deletions

View file

@ -14,6 +14,8 @@
#include "opencv2/imgproc/imgproc_c.h"
#include "opencv2/imgproc/imgproc.hpp"
#define raise_cverror(e) cCvError::raise(e)
void raise_typeerror(VALUE object, VALUE expected_class);
void raise_compatible_typeerror(VALUE object, VALUE expected_class);
void* rb_cvAlloc(size_t size);