diff options
author | Slávek Banko <[email protected]> | 2021-06-23 17:21:16 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2021-06-23 19:16:05 +0200 |
commit | 8403288e0159dbe377403e5f089072685a9d94f3 (patch) | |
tree | a9d67abfdfe66d86d58a6009852d497ee56795a8 /src/otrplugin-factory.cpp | |
parent | 541bc109cb8ee0ffd9ae8fd7df9bff715c0ef0d9 (diff) | |
download | kopete-otr-8403288e0159dbe377403e5f089072685a9d94f3.tar.gz kopete-otr-8403288e0159dbe377403e5f089072685a9d94f3.zip |
Separate OTRPlugin object code from the OTRPluginFactory definition.
This resolves bug 1153.
Fix support for GCC hidden visibility.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'src/otrplugin-factory.cpp')
-rw-r--r-- | src/otrplugin-factory.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/otrplugin-factory.cpp b/src/otrplugin-factory.cpp new file mode 100644 index 0000000..bf1df9f --- /dev/null +++ b/src/otrplugin-factory.cpp @@ -0,0 +1,32 @@ +/*************************************************************************** + * Copyright (C) 2007 by Michael Zanetti * + * * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ + +#include <kgenericfactory.h> +#include <tdeaboutdata.h> + +#include "otrplugin.h" + +/** + * @author Michael Zanetti + */ + +typedef KGenericFactory<OTRPlugin> OTRPluginFactory; +static const TDEAboutData aboutdata("kopete_otr", I18N_NOOP("OTR") , "0.7" ); +K_EXPORT_COMPONENT_FACTORY( kopete_otr, OTRPluginFactory( &aboutdata ) ) |