mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
457 B
21 lines
457 B
13 years ago
|
#ifndef __BP_OPENCV_ENGINE_H__
|
||
|
#define __BP_OPENCV_ENGINE_H__
|
||
|
|
||
|
#include "EngineCommon.h"
|
||
|
#include "IOpenCVEngine.h"
|
||
|
#include <binder/IInterface.h>
|
||
|
#include <binder/Parcel.h>
|
||
|
#include <utils/String16.h>
|
||
|
|
||
|
class BnOpenCVEngine: public android::BnInterface<IOpenCVEngine>
|
||
|
{
|
||
|
public:
|
||
|
android::status_t onTransact(uint32_t code,
|
||
|
const android::Parcel &data,
|
||
|
android::Parcel *reply,
|
||
|
uint32_t flags);
|
||
|
virtual ~BnOpenCVEngine();
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|