summaryrefslogtreecommitdiffstats
path: root/tderesources/caldav/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tderesources/caldav/plugin.cpp')
-rw-r--r--tderesources/caldav/plugin.cpp49
1 files changed, 49 insertions, 0 deletions
diff --git a/tderesources/caldav/plugin.cpp b/tderesources/caldav/plugin.cpp
new file mode 100644
index 00000000..9ce6d60f
--- /dev/null
+++ b/tderesources/caldav/plugin.cpp
@@ -0,0 +1,49 @@
+/*=========================================================================
+| KCalDAV
+|--------------------------------------------------------------------------
+| (c) 2010 Timothy Pearson
+| (c) 2009 Kumaran Santhanam (initial KDE4 version)
+|
+| This project is released under the GNU General Public License.
+| Please see the file COPYING for more details.
+|--------------------------------------------------------------------------
+| CalDAV resource factory.
+ ========================================================================*/
+
+/*=========================================================================
+| INCLUDES
+ ========================================================================*/
+
+#include "resource.h"
+#include "config.h"
+#include "export.h"
+
+#include <kglobal.h>
+#include <klocale.h>
+
+/*=========================================================================
+| NAMESPACE
+ ========================================================================*/
+
+using namespace KCal;
+
+/*=========================================================================
+| CLASS
+ ========================================================================*/
+
+// Creates the resource factory.
+//EXPORT_KRESOURCES_PLUGIN2( ResourceCalDav, ResourceCalDavConfig, "libkcal", "kres_caldav" )
+
+typedef KRES::PluginFactory<ResourceCalDav, ResourceCalDavConfig> CalDavFactory;
+
+extern "C"
+{
+ void *init_kcal_caldav()
+ {
+ TDEGlobal::locale()->insertCatalogue( "libkcal" );
+ TDEGlobal::locale()->insertCatalogue( "kres_caldav" );
+ return new CalDavFactory;
+ }
+}
+
+// EOF ========================================================================