2012-06-29 00:23:19 +08:00
|
|
|
#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,
|
2012-10-17 07:18:30 +08:00
|
|
|
const android::Parcel &data,
|
|
|
|
android::Parcel *reply,
|
|
|
|
uint32_t flags);
|
2012-06-29 00:23:19 +08:00
|
|
|
virtual ~BnOpenCVEngine();
|
2012-10-17 07:18:30 +08:00
|
|
|
|
2012-06-29 00:23:19 +08:00
|
|
|
};
|
|
|
|
|
2013-08-21 21:26:54 +08:00
|
|
|
#endif
|