85
|
1 |
/*
|
|
2 |
* Copyright (c) 2009 Nokia Corporation 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 Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description: This file defines the API for CaLocalizerScanner.dll
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef __CALOCALCANNERPLUGIN_H__
|
|
19 |
#define __CALOCALCANNERPLUGIN_H__
|
|
20 |
|
|
21 |
#include <e32base.h>
|
|
22 |
#include <e32std.h>
|
|
23 |
#include "casrvplugin.h"
|
|
24 |
|
|
25 |
|
|
26 |
class CCaLocalizerScannerProxy;
|
|
27 |
|
|
28 |
class CCaLocalizerScanner: public CCaSrvPlugin
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
|
|
32 |
/**
|
|
33 |
* Two-phased constructor.
|
|
34 |
*/
|
|
35 |
static CCaLocalizerScanner* NewL( TPluginParams* aPluginParams );
|
|
36 |
|
|
37 |
/**
|
|
38 |
* destructor.
|
|
39 |
*/
|
|
40 |
virtual ~CCaLocalizerScanner( );
|
|
41 |
|
|
42 |
private:
|
|
43 |
|
|
44 |
/**
|
|
45 |
* Default constructor.
|
|
46 |
*/
|
|
47 |
CCaLocalizerScanner( );
|
|
48 |
|
|
49 |
/**
|
|
50 |
* Two-phased constructor.
|
|
51 |
* @param aPluginParams should contain CaStorageProxy
|
|
52 |
*/
|
|
53 |
void ConstructL( TPluginParams* aPluginParams );
|
|
54 |
|
|
55 |
private:
|
|
56 |
|
|
57 |
/**
|
|
58 |
* Inner class of plugin. Owned
|
|
59 |
*/
|
|
60 |
CCaLocalizerScannerProxy* iLocalizerScanner;
|
|
61 |
};
|
|
62 |
|
|
63 |
#endif // __CALOCALCANNERPLUGIN_H__
|