tiemu_stub.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. //Added by qt3to4:
  13. #include <Q3CString>
  14. #include <dcopobject.h>
  15. #include <qobject.h>
  16. class TiEmuDCOP_stub : virtual public DCOPStub
  17. {
  18. public:
  19. TiEmuDCOP_stub( const Q3CString& app, const Q3CString& id );
  20. TiEmuDCOP_stub( DCOPClient* client, const Q3CString& app, const Q3CString& id );
  21. explicit TiEmuDCOP_stub( const DCOPRef& ref );
  22. virtual bool image_loaded();
  23. virtual int emulated_calc_type();
  24. virtual int emulated_hw_version();
  25. virtual QString emulated_os_version();
  26. virtual bool ready_for_transfers();
  27. virtual bool send_file( QString );
  28. virtual bool send_files( QStringList );
  29. virtual bool debug_file( QString );
  30. virtual bool reset_calc( bool );
  31. virtual bool execute_command( QString command );
  32. virtual bool turn_calc_on();
  33. virtual bool enter_debugger();
  34. protected:
  35. TiEmuDCOP_stub() : DCOPStub( never_use ) {};
  36. };
  37. #endif