Path: blob/master/modules/java/generator/src/cpp/common.h
16354 views
// This file is part of OpenCV project.1// It is subject to the license terms in the LICENSE file found in the top-level directory2// of this distribution and at http://opencv.org/license.html34#ifndef __OPENCV_JAVA_COMMON_H__5#define __OPENCV_JAVA_COMMON_H__67#include <stdexcept>8#include <string>910extern "C" {1112#if !defined(__ppc__)13// to suppress warning from jni.h on OS X14# define TARGET_RT_MAC_CFM 015#endif16#include <jni.h>1718} // extern "C"1920#include "opencv_java.hpp"21#include "opencv2/core/utility.hpp"2223#include "converters.h"24#include "listconverters.hpp"2526#ifdef _MSC_VER27# pragma warning(disable:4800 4244)28#endif2930#endif //__OPENCV_JAVA_COMMON_H__313233