equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2002 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: Callback interface for engine's internal invite expiry-handling |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef MCAINVITETRACKERCALLBACK_H |
|
20 #define MCAINVITETRACKERCALLBACK_H |
|
21 |
|
22 // FORWARD DECLARATIONS |
|
23 class CCAInvitation; |
|
24 |
|
25 // CLASS DECLARATION |
|
26 |
|
27 /** |
|
28 * Callback interface for engine's internal invite expiry-handling |
|
29 * |
|
30 * @lib CAEngine.lib |
|
31 * @since 1.2 |
|
32 */ |
|
33 class MCAInviteTrackerCallback |
|
34 { |
|
35 public: // Interface |
|
36 |
|
37 /** |
|
38 * Called when some invite expires. |
|
39 * @param aInvitation Invitation that was expired |
|
40 */ |
|
41 virtual void InviteExpiredL( const MCAInvitation* aInvitation ) = 0; |
|
42 |
|
43 protected: |
|
44 |
|
45 /** |
|
46 * Destructor. |
|
47 */ |
|
48 virtual ~MCAInviteTrackerCallback() {}; |
|
49 }; |
|
50 |
|
51 #endif // MCAINVITETRACKERCALLBACK_H |
|
52 |
|
53 // End of File |