20 lines
289 B
C++
20 lines
289 B
C++
#ifndef __MNN_SESSION_H__
|
|
#define __MNN_SESSION_H__
|
|
|
|
#include <MNN/Interpreter.hpp>
|
|
#include <MNN/ImageProcess.hpp>
|
|
|
|
#include "common/session.h"
|
|
|
|
namespace ai
|
|
{
|
|
class MNNSession : public Session
|
|
{
|
|
public:
|
|
MNNSession(const void *modelData, size_t size);
|
|
~MNNSession();
|
|
};
|
|
}
|
|
|
|
#endif
|