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