equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // Header file for the AO used to cancel EtelPckt AOs |
|
15 // |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 @internalComponent |
|
21 */ |
|
22 |
|
23 #ifndef _TE_PCKTCANCELLER_H_ |
|
24 #define _TE_PCKTCANCELLER_H_ |
|
25 |
|
26 class CTestCanceller : public CAsyncOneShot |
|
27 { |
|
28 public: |
|
29 CTestCanceller(CActive*); |
|
30 ~CTestCanceller(); |
|
31 private: |
|
32 |
|
33 void ConstructL(); |
|
34 void RunL(); |
|
35 private: |
|
36 CActive* iRetrieve;// not owned by this |
|
37 }; |
|
38 |
|
39 |
|
40 #endif |