kpilot
popmail-factory.cc
Go to the documentation of this file.00001 /* KPilot 00002 ** 00003 ** Copyright (C) 2001 by Dan Pilone 00004 ** Copyright (C) 2006 by Adriaan de Groot <groot@kde.org> 00005 ** 00006 ** This file defines the factory for the popmail-conduit plugin. 00007 */ 00008 00009 /* 00010 ** This program is free software; you can redistribute it and/or modify 00011 ** it under the terms of the GNU General Public License as published by 00012 ** the Free Software Foundation; either version 2 of the License, or 00013 ** (at your option) any later version. 00014 ** 00015 ** This program is distributed in the hope that it will be useful, 00016 ** but WITHOUT ANY WARRANTY; without even the implied warranty of 00017 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00018 ** GNU General Public License for more details. 00019 ** 00020 ** You should have received a copy of the GNU General Public License 00021 ** along with this program in a file called COPYING; if not, write to 00022 ** the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 00023 ** MA 02110-1301, USA. 00024 */ 00025 00026 /* 00027 ** Bug reports and questions can be sent to kde-pim@kde.org 00028 */ 00029 00030 #include "options.h" 00031 00032 00033 #include "setupDialog.h" 00034 #include "popmail-conduit.h" 00035 #include "pluginfactory.h" 00036 00037 00038 extern "C" 00039 { 00040 00041 void *init_conduit_popmail() 00042 { 00043 return new ConduitFactory<PopMailWidgetConfig,PopMailConduit>; 00044 } 00045 00046 } 00047