Organizer-factory.h
00001 #ifndef _KPILOT_Organizer_FACTORY_H 00002 #define _KPILOT_Organizer_FACTORY_H 00003 /* Organizer-factory.h KPilot 00004 ** 00005 ** Copyright (C) 2001 by Dan Pilone 00006 ** Copyright (C) 2002 by Reinhold Kainhofer 00007 ** 00008 ** This file defines the factory for the Organizer-conduit plugin. 00009 ** It also defines the class for the behavior of the setup dialog. 00010 */ 00011 00012 /* 00013 ** This program is free software; you can redistribute it and/or modify 00014 ** it under the terms of the GNU General Public License as published by 00015 ** the Free Software Foundation; either version 2 of the License, or 00016 ** (at your option) any later version. 00017 ** 00018 ** This program is distributed in the hope that it will be useful, 00019 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00020 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00021 ** GNU General Public License for more details. 00022 ** 00023 ** You should have received a copy of the GNU General Public License 00024 ** along with this program in a file called COPYING; if not, write to 00025 ** the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, 00026 ** MA 02111-1307, USA. 00027 */ 00028 00029 /* 00030 ** Bug reports and questions can be sent to kde-pim@kde.org 00031 */ 00032 00033 #include "MultiDB-factory.h" 00034 00035 00036 class OrganizerConduitFactory : public MultiDBConduitFactory { 00037 Q_OBJECT 00038 public: 00039 OrganizerConduitFactory(QObject * p= 0L,const char * n= 0L):MultiDBConduitFactory(p,n) {}; 00040 virtual ~OrganizerConduitFactory(){}; 00041 virtual void customConduitInfo(); 00042 } ; 00043 00044 00045 // $Log: Organizer-factory.h,v $ 00046 // Revision 1.1.4.1 2003/03/12 23:31:10 adridg 00047 // CVS_SILENT: FSF address change 00048 // 00049 // Revision 1.1 2002/04/07 12:09:43 kainhofe 00050 // Initial checkin of the conduit. The gui works mostly, but syncing crashes KPilot... 00051 // 00052 // Revision 1.1 2002/04/07 01:03:52 reinhold 00053 // the list of possible actions is now created dynamically 00054 // 00055 // Revision 1.1 2002/03/28 13:49:51 reinhold 00056 // Organizer factory is needed for the synctype list\!\!\! 00057 // 00058 // Revision 1.5 2002/03/23 21:46:42 reinhold 00059 // config dlg works, but the last changes crash the plugin itself 00060 // 00061 // Revision 1.4 2002/03/23 18:21:14 reinhold 00062 // Cleaned up the structure. Works with QTimer instead of loops. 00063 // 00064 // Revision 1.3 2002/03/15 20:43:17 reinhold 00065 // Fixed the crash on loading (member function not defined)... 00066 // 00067 // Revision 1.2 2002/03/10 23:58:32 reinhold 00068 // Made the conduit compile... 00069 // 00070 // Revision 1.1.1.1 2002/03/09 15:38:45 reinhold 00071 // Initial checin of the project manager / List manager conduit. 00072 // 00073 // 00074 00075 00076 #endif