/* netmeetingguiclient.h Kopete NetMeeting Plugin Copyright (c) 2003 by Olivier Goffart Kopete (c) 2003 by the Kopete developers ************************************************************************* * * * 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. * * * ************************************************************************* */ #ifndef TRANSLATORGUICLIENT_H #define TRANSLATORGUICLIENT_H #include #include namespace Kopete { class ChatSession; } class MSNChatSession; class NetMeetingPlugin; /** * @author Olivier Goffart */ class NetMeetingGUIClient : public TQObject , public KXMLGUIClient { TQ_OBJECT public: NetMeetingGUIClient( MSNChatSession *parent, const char *name=0L); ~NetMeetingGUIClient(); private slots: void slotStartInvitation(); private: MSNChatSession *m_manager; NetMeetingPlugin *m_plugin; }; #endif