diff options
Diffstat (limited to 'kopete/protocols/oscar/oscarversionupdater.h')
-rw-r--r-- | kopete/protocols/oscar/oscarversionupdater.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/kopete/protocols/oscar/oscarversionupdater.h b/kopete/protocols/oscar/oscarversionupdater.h index deec082d..5c39683f 100644 --- a/kopete/protocols/oscar/oscarversionupdater.h +++ b/kopete/protocols/oscar/oscarversionupdater.h @@ -64,11 +64,22 @@ public: const Oscar::ClientVersion* getICQVersion() const { return &mICQVersion; } /** + * Return structure with version info for AIM. + * @return Oscar::ClientVersion. + */ + const Oscar::ClientVersion* getAIMVersion() const { return &mAIMVersion; } + + /** * Set structure with ICQ version info to default. */ void initICQVersionInfo(); /** + * Set structure with AIM version info to default. + */ + void initAIMVersionInfo(); + + /** * Print debug info. */ void printDebug(); @@ -98,6 +109,7 @@ private: static OscarVersionUpdater *versionUpdaterStatic; Oscar::ClientVersion mICQVersion; + Oscar::ClientVersion mAIMVersion; TDEIO::TransferJob *mTransferJob; TQByteArray mVersionData; |