-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiemu_stub.h
41 lines (35 loc) · 1.2 KB
/
tiemu_stub.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/****************************************************************************
**
** DCOP Stub Definition created by dcopidl2cpp from tiemu.kidl
**
** WARNING! All changes made in this file will be lost!
**
*****************************************************************************/
#ifndef __TIEMU_STUB__
#define __TIEMU_STUB__
#include <dcopstub.h>
#include <qstringlist.h>
#include <dcopobject.h>
#include <qobject.h>
class TiEmuDCOP_stub : virtual public DCOPStub
{
public:
TiEmuDCOP_stub( const QCString& app, const QCString& id );
TiEmuDCOP_stub( DCOPClient* client, const QCString& app, const QCString& id );
explicit TiEmuDCOP_stub( const DCOPRef& ref );
virtual bool image_loaded();
virtual int emulated_calc_type();
virtual int emulated_hw_version();
virtual QString emulated_os_version();
virtual bool ready_for_transfers();
virtual bool send_file( QString );
virtual bool send_files( QStringList );
virtual bool debug_file( QString );
virtual bool reset_calc( bool );
virtual bool execute_command( QString command );
virtual bool turn_calc_on();
virtual bool enter_debugger();
protected:
TiEmuDCOP_stub() : DCOPStub( never_use ) {};
};
#endif