blob: 9cafa5bf0aa3239950f6a07840cc782abcd23b36 (
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 <tdeglobal.h>
#include <tdelocale.h>
/*=========================================================================
| NAMESPACE
========================================================================*/
using namespace TDEABC;
/*=========================================================================
| CLASS
========================================================================*/
// Creates the resource factory.
typedef KRES::PluginFactory<ResourceCardDav, ResourceCardDavConfig> CardDavFactory;
extern "C"
{
void *init_tdeabc_carddav()
{
TDEGlobal::locale()->insertCatalogue( "tdepimresources" );
TDEGlobal::locale()->insertCatalogue( "kres_caldav" );
return new CardDavFactory;
}
}
// EOF ========================================================================
|