equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Interface for presence cache writer handler. |
|
15 * |
|
16 */ |
|
17 |
|
18 #ifndef MPRESENCECACHEWRITEHANDLER2_H |
|
19 #define MPRESENCECACHEWRITEHANDLER2_H |
|
20 |
|
21 /** |
|
22 * Interface for presence cache writer API. Handler for asynchronous functions used in API. |
|
23 * This interface is implemented by the clients as per their needs. |
|
24 * |
|
25 */ |
|
26 class MPresenceCacheWriteHandler2 |
|
27 { |
|
28 public: |
|
29 |
|
30 /** |
|
31 * Handler for Asynchronous methods of MPresenceCacheWriter2. |
|
32 * |
|
33 * @param TInt error code comes here |
|
34 */ |
|
35 virtual void HandlePresenceWriteL(TInt aErrorCode) = 0; |
|
36 }; |
|
37 |
|
38 #endif // MPRESENCECACHEWRITEHANDLER2_H |