equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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 used to check if current recipient is blocked. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_BLOCKCHECKER_H |
|
20 #define M_BLOCKCHECKER_H |
|
21 |
|
22 /** |
|
23 * Interface used to check if current recipient |
|
24 * is blocked. |
|
25 * |
|
26 * @lib chat.exe |
|
27 * @since S60 v3.1 |
|
28 */ |
|
29 class MCABlockChecker |
|
30 { |
|
31 |
|
32 public: |
|
33 |
|
34 /** |
|
35 * Checks if conversation partner is blocked |
|
36 * and unblocks if partner is blocked. Shows needed |
|
37 * notes. Used in message sending. |
|
38 * @since S60 v3.1 |
|
39 */ |
|
40 virtual void CheckBlockedL() = 0; |
|
41 |
|
42 protected: |
|
43 |
|
44 /** |
|
45 * Deletion not allowed through this interface. |
|
46 */ |
|
47 virtual ~MCABlockChecker() {}; |
|
48 |
|
49 }; |
|
50 |
|
51 |
|
52 #endif // M_BLOCKCHECKER_H |