89
|
1 |
/*
|
|
2 |
* Copyright (c) 2010 Sun Microsystems, Inc. and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
4 |
* This component and the accompanying materials are made available
|
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
|
6 |
* which accompanies this distribution, and is available
|
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
*
|
|
9 |
* Initial Contributor:
|
|
10 |
* Maximilian Odendahl
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: calav ecom plugin proxy implementation
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#include <implementationproxy.h>
|
|
19 |
|
|
20 |
#include "CalDavUids.h"
|
|
21 |
#include "calencaldavplugin.h"
|
|
22 |
|
|
23 |
|
|
24 |
// ----------------------------------------------------------------------------
|
|
25 |
// ImplementationTable
|
|
26 |
// ----------------------------------------------------------------------------
|
|
27 |
const TImplementationProxy ImplementationTable[] =
|
|
28 |
{
|
|
29 |
IMPLEMENTATION_PROXY_ENTRY( CALEN_CALDAV_IMPLEMENTATION_UID,
|
|
30 |
CCalenCalDavPlugin::NewL )
|
|
31 |
|
|
32 |
};
|
|
33 |
|
|
34 |
|
|
35 |
// ----------------------------------------------------------------------------
|
|
36 |
// ImplementationGroupProxy
|
|
37 |
// ----------------------------------------------------------------------------
|
|
38 |
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
|
|
39 |
{
|
|
40 |
aTableCount = sizeof(ImplementationTable) / sizeof (TImplementationProxy);
|
|
41 |
return ImplementationTable;
|
|
42 |
}
|
|
43 |
|
|
44 |
// ----------------------------------------------------------------------------
|
|
45 |
// End of file
|
|
46 |
// ----------------------------------------------------------------------------
|
|
47 |
|