tiemu_stub.h 1.2 KB

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