summaryrefslogtreecommitdiffstats
path: root/kresources/carddav/plugin.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kresources/carddav/plugin.cpp')
-rw-r--r--kresources/carddav/plugin.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/kresources/carddav/plugin.cpp b/kresources/carddav/plugin.cpp
deleted file mode 100644
index d0c4724ff..000000000
--- a/kresources/carddav/plugin.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/*=========================================================================
-| KCardDAV
-|--------------------------------------------------------------------------
-| (c) 2010 Timothy Pearson
-|
-| This project is released under the GNU General Public License.
-| Please see the file COPYING for more details.
-|--------------------------------------------------------------------------
-| CardDAV resource factory.
- ========================================================================*/
-
-/*=========================================================================
-| INCLUDES
- ========================================================================*/
-
-#include "resource.h"
-#include "config.h"
-#include "export.h"
-
-#include <kglobal.h>
-#include <klocale.h>
-
-/*=========================================================================
-| NAMESPACE
- ========================================================================*/
-
-using namespace KABC;
-
-/*=========================================================================
-| CLASS
- ========================================================================*/
-
-// Creates the resource factory.
-
-typedef KRES::PluginFactory<ResourceCardDav, ResourceCardDavConfig> CardDavFactory;
-
-extern "C"
-{
- void *init_kabc_carddav()
- {
- TDEGlobal::locale()->insertCatalogue( "tdepimresources" );
- TDEGlobal::locale()->insertCatalogue( "kres_caldav" );
- return new CardDavFactory;
- }
-}
-
-// EOF ========================================================================