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