114
|
1 |
/*
|
|
2 |
* Copyright (c) 2005-2007 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: Profile plugin private interface
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef MAIPROFILEPLUGINNOTIFIER_H
|
|
20 |
#define MAIPROFILEPLUGINNOTIFIER_H
|
|
21 |
|
|
22 |
// CLASS DECLARATION
|
|
23 |
/**
|
|
24 |
* @ingroup group_profileplugin
|
|
25 |
*
|
|
26 |
* It defines interface for the plugin, contains virtual method which offers plugin
|
|
27 |
* a way to notify the client e.g. P&S data changes
|
|
28 |
*
|
|
29 |
* @since S60 v3.2
|
|
30 |
*/
|
|
31 |
class MAiProfilePluginNotifier
|
|
32 |
{
|
|
33 |
public:
|
|
34 |
|
|
35 |
/**
|
|
36 |
* Virtual method, which the plugin class has to implement.
|
|
37 |
* Method is used to send notification of P&S data's change event
|
|
38 |
* from engine to plugin.
|
|
39 |
*/
|
|
40 |
virtual void NotifyContentUpdate() = 0;
|
|
41 |
};
|
|
42 |
|
|
43 |
#endif // MAIPROFILEPLUGINNOTIFIER_H
|
|
44 |
|
|
45 |
// End of file
|