diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2017-12-30 15:57:14 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2017-12-30 15:57:29 +0100 |
commit | f59b2e28c7ab8707750e56a140023af08d42390e (patch) | |
tree | 1bbe97b78d7a1c2e6e3bf8bbe20110c01d48f157 /kopete/protocols/oscar/aim/aimchatsession.h | |
parent | 21ba13a5b4221c3659836abcab63417625294b19 (diff) | |
download | tdenetwork-f59b2e28c7ab8707750e56a140023af08d42390e.tar.gz tdenetwork-f59b2e28c7ab8707750e56a140023af08d42390e.zip |
kopete: Remove AIM protocol
AIM network has been shutdown in 2017-12-15
This resolves Bug 2846
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit dc34f9c39105b0fe20ba45c064a08406084acbe2)
Diffstat (limited to 'kopete/protocols/oscar/aim/aimchatsession.h')
-rw-r--r-- | kopete/protocols/oscar/aim/aimchatsession.h | 78 |
1 files changed, 0 insertions, 78 deletions
diff --git a/kopete/protocols/oscar/aim/aimchatsession.h b/kopete/protocols/oscar/aim/aimchatsession.h deleted file mode 100644 index b4e78e3d..00000000 --- a/kopete/protocols/oscar/aim/aimchatsession.h +++ /dev/null @@ -1,78 +0,0 @@ -// aimchatsession.h -// Copyright (C) 2005 Matt Rogers <mattr@kde.org> - -// This program is free software; you can redistribute it and/or -// modify it under the terms of the GNU General Public License -// as published by the Free Software Foundation; either version 2 -// of the License, or (at your option) any later version. - -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. - -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 51 Franklin Steet, Fifth Floor, Boston, MA -// 02110-1301, USA. - -#ifndef AIMCHATSESSION_H -#define AIMCHATSESSION_H - -#include "kopetechatsession.h" -#include "oscartypes.h" - -class Client; - -class AIMChatSession : public Kopete::ChatSession -{ -Q_OBJECT - -public: - AIMChatSession( const Kopete::Contact* contact, Kopete::ContactPtrList others, - Kopete::Protocol* protocol, Oscar::WORD exchange = 0, - const TQString& room = TQString() ); - virtual ~AIMChatSession(); - - /** - * Set the engine to use so that we can disconnect from the chat service - * properly - */ - void setEngine( Client* engine ); - - /** - * Get the name of the AIM chat room represented by - * this ChatSession object - * @return the name of the chat room - */ - TQString roomName() const; - - /** - * Set the name of the AIM chat room represented by - * this ChatSession object - * @param room the name of the AIM chat room - */ - void setRoomName( const TQString& room ); - - /** - * Get the exchange of the AIM chat room represented by - * this ChatSession object - * @return the exchange of the chat room - */ - Oscar::WORD exchange() const; - - /** - * Set the exchange of the AIM chat room represented by - * this ChatSession object - * @param exchange the exchange of the AIM chat room - */ - void setExchange( Oscar::WORD exchange ); - -private: - TQString m_roomName; - Oscar::WORD m_exchange; - Client* m_engine; -}; - - -#endif |