summaryrefslogtreecommitdiffstats
path: root/tderesources/carddav/plugin.cpp
blob: d0c4724ff73023fef817dd625cc7fa02c733b274 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*=========================================================================
| 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 ========================================================================