summaryrefslogtreecommitdiffstats
path: root/src/otrplugin-factory.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2021-06-23 17:21:16 +0200
committerSlávek Banko <slavek.banko@axis.cz>2021-06-25 02:30:13 +0200
commite2034480561f1266bd0fa975ba74956b0301695f (patch)
tree481ddecadf7a42b7a1abc7675fe914dec2d0f5c3 /src/otrplugin-factory.cpp
parent83e511dfa6f07547011cb1230b0f71f7a4e72351 (diff)
downloadkopete-otr-e2034480561f1266bd0fa975ba74956b0301695f.tar.gz
kopete-otr-e2034480561f1266bd0fa975ba74956b0301695f.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 <slavek.banko@axis.cz> (cherry picked from commit 8403288e0159dbe377403e5f089072685a9d94f3)
Diffstat (limited to 'src/otrplugin-factory.cpp')
-rw-r--r--src/otrplugin-factory.cpp32
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 ) )