summaryrefslogtreecommitdiffstats
path: root/tderesources/caldav/plugin.cpp
blob: c7ea06e818b7b50d6a9f3dd3b6414e0c62625272 (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
48
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_TDERESOURCES_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 ========================================================================