Bonsai-conduit.h
00001 #ifndef _BonsaiCONDUIT_H 00002 #define _BonsaiCONDUIT_H 00003 00004 /* Bonsai-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 Bonsai conduit, a conduit for KPilot that 00012 ** synchronises the Pilot's Bonsai 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 groot@kde.org 00035 */ 00036 00037 00038 #include "options.h" 00039 using namespace KCal; 00040 00041 class BonsaiConduit : public OrganizerConduit { 00042 Q_OBJECT 00043 public: 00044 BonsaiConduit(KPilotDeviceLink *, const char *n=0L, const QStringList &l=QStringList()); 00045 virtual ~BonsaiConduit() {}; 00046 00047 protected: 00048 virtual long dbtype() { return 0x4e4f746c;} 00049 virtual long dbcreator() { return 0x4441544f;} 00050 }; 00051 00052 00053 // $Log: Bonsai-conduit.h,v $ 00054 // Revision 1.1.4.1 2003/03/12 23:31:09 adridg 00055 // CVS_SILENT: FSF address change 00056 // 00057 // Revision 1.1 2002/04/07 12:09:42 kainhofe 00058 // Initial checkin of the conduit. The gui works mostly, but syncing crashes KPilot... 00059 // 00060 // Revision 1.4 2002/04/07 11:56:18 reinhold 00061 // Last version before moving to KDE CVS 00062 // 00063 // Revision 1.3 2002/04/05 21:17:01 reinhold 00064 // *** empty log message *** 00065 // 00066 // Revision 1.2 2002/03/23 21:46:43 reinhold 00067 // config dlg works, but the last changes crash the plugin itself 00068 // 00069 // Revision 1.1 2002/03/09 15:45:48 reinhold 00070 // Moved the files around 00071 // 00072 // Revision 1.1.1.1 2002/03/09 15:38:45 reinhold 00073 // Initial checin of the project manager / List manager conduit. 00074 // 00075 // 00076 // 00077 #endif