diff options
author | Pawel Polanski <[email protected]> | 2011-02-10 16:48:41 +0100 |
---|---|---|
committer | Pawel Polanski <[email protected]> | 2011-02-10 16:50:42 +0100 |
commit | 1c036c43bf6f183710c05ce9f81b8827424491c7 (patch) | |
tree | 8bee24142b094975ef00918be2a3628bf2d2bbf7 /tests/tools/codaclient/codaclientapplication.h | |
parent | 6e12300d2d1ca82e6a785707544e102a4dde5ff3 (diff) |
Symbian: Refactor codaclient application to make it compile once again
Diffstat (limited to 'tests/tools/codaclient/codaclientapplication.h')
-rw-r--r-- | tests/tools/codaclient/codaclientapplication.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/tools/codaclient/codaclientapplication.h b/tests/tools/codaclient/codaclientapplication.h index b23c746bc01..92364928837 100644 --- a/tests/tools/codaclient/codaclientapplication.h +++ b/tests/tools/codaclient/codaclientapplication.h @@ -41,10 +41,10 @@ QT_FORWARD_DECLARE_CLASS(QFile) -namespace tcftrk { - struct TcfTrkCommandResult; - class TcfTrkDevice; - class TcfTrkEvent; +namespace Coda { + struct CodaCommandResult; + class CodaDevice; + class CodaEvent; } class CodaClientApplication : public QCoreApplication @@ -66,18 +66,18 @@ public: private slots: void slotError(const QString &); void slotTrkLogMessage(const QString &); - void slotTcftrkEvent(const tcftrk::TcfTrkEvent &); + void slotCodaEvent(const Coda::CodaEvent &); void slotSerialPong(const QString &); private: void printTimeStamp(); bool parseArgument(const QString &a, int argNumber, QString *errorMessage); - void handleCreateProcess(const tcftrk::TcfTrkCommandResult &result); - void handleFileSystemOpen(const tcftrk::TcfTrkCommandResult &result); - void handleFileSystemWrite(const tcftrk::TcfTrkCommandResult &result); - void handleFileSystemClose(const tcftrk::TcfTrkCommandResult &result); - void handleFileSystemFStat(const tcftrk::TcfTrkCommandResult &result); - void handleSymbianInstall(const tcftrk::TcfTrkCommandResult &result); + void handleCreateProcess(const Coda::CodaCommandResult &result); + void handleFileSystemOpen(const Coda::CodaCommandResult &result); + void handleFileSystemWrite(const Coda::CodaCommandResult &result); + void handleFileSystemClose(const Coda::CodaCommandResult &result); + void handleFileSystemFStat(const Coda::CodaCommandResult &result); + void handleSymbianInstall(const Coda::CodaCommandResult &result); void doExit(int ex); void putSendNextChunk(); void closeRemoteFile(); @@ -103,7 +103,7 @@ private: quint64 m_putChunkSize; unsigned m_verbose; QTime m_startTime; - QScopedPointer<tcftrk::TcfTrkDevice> m_trkDevice; + QScopedPointer<Coda::CodaDevice> m_trkDevice; }; #endif // CODACLIENTAPPLICATION_H |