equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2003 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: Requester for Imps timer. |
|
15 * |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef IMPSTIMINGREQUESTER_H |
|
21 #define IMPSTIMINGREQUESTER_H |
|
22 |
|
23 // CLASS DECLARATION |
|
24 |
|
25 /** |
|
26 * This class only exists in order to be able to |
|
27 * "label" the classes, which make use of the |
|
28 * CImpsTransportTimer services. Classes, which |
|
29 * instantiate the timer class, must derive from |
|
30 * this abstraction so that, in case the timer expires, |
|
31 * the callback interface (MImpsTransportTimerCallback) |
|
32 * is able to find out who issued the activation of the |
|
33 * timer in the first place. See the class CHttpTransportAdapter |
|
34 * and the function "HandleTransportTimerEventL" for an example |
|
35 * of how this is supposed to work. |
|
36 */ |
|
37 class TImpsTimingRequester |
|
38 { |
|
39 public: //None |
|
40 |
|
41 private: //None |
|
42 |
|
43 protected: //None |
|
44 }; |
|
45 |
|
46 #endif // IMPSTRANSPORTTIMERCALLBACK_H |
|
47 |
|
48 // End of File |