JPilotProxy-conduit.h
00001 #ifndef _JPilotProxyCONDUIT_H 00002 #define _JPilotProxyCONDUIT_H 00003 00004 /* JPilotProxy-conduit.h KPilot 00005 ** 00006 ** Copyright (C) 1998 Reinhold Kainhofer 00007 ** 00008 ** This file is part of the JPilotProxy conduit, a conduit for KPilot that 00009 ** synchronises the Pilot's JPilotProxy application with the outside world, 00010 ** which currently means KOrganizer. 00011 */ 00012 00013 /* 00014 ** This program is free software; you can redistribute it and/or modify 00015 ** it under the terms of the GNU General Public License as published by 00016 ** the Free Software Foundation; either version 2 of the License, or 00017 ** (at your option) any later version. 00018 ** 00019 ** This program is distributed in the hope that it will be useful, 00020 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00021 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00022 ** GNU General Public License for more details. 00023 ** 00024 ** You should have received a copy of the GNU General Public License 00025 ** along with this program in a file called COPYING; if not, write to 00026 ** the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00027 ** MA 02111-1307, USA. 00028 */ 00029 00030 /* 00031 ** Bug reports and questions can be sent to kde-pim@kde.org 00032 */ 00033 00034 #include "klistview.h" 00035 #include "plugin.h" 00036 00037 00038 class JPilotProxyConduit : public ConduitAction { 00039 public: 00040 JPilotProxyConduit(KPilotDeviceLink *, const char *n=0L, const QStringList &l=QStringList()); 00041 virtual ~JPilotProxyConduit() {}; 00042 virtual bool exec(); 00043 /* pure virtual functions, need to be overloaded in child classes */ 00044 virtual const QString conduitSettingsGroup() { return QString("JPilotPluginProxy");}; 00045 }; 00046 00047 00048 #endif