You cannot 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
420 B
C++
21 lines
420 B
C++
#ifndef __TERMINAL_DEVICE_H__
|
|
#define __TERMINAL_DEVICE_H__
|
|
|
|
#include <Client/Device.h>
|
|
#include <jni.h>
|
|
|
|
class CTerminalDevice : public IDevice
|
|
{
|
|
public:
|
|
CTerminalDevice(JavaVM* vm, jobject service);
|
|
~CTerminalDevice();
|
|
|
|
virtual bool TakePhoto(unsigned char channel, unsigned char preset, const string& path, bool photo);
|
|
|
|
private:
|
|
JavaVM* m_vm;
|
|
jobject m_javaService;
|
|
};
|
|
|
|
|
|
#endif // __TERMINAL_DEVICE_H__
|