equal
deleted
inserted
replaced
|
1 // Copyright (c) 2007-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 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @test |
|
19 @internalComponent - Internal Symbian test code |
|
20 */ |
|
21 |
|
22 |
|
23 #ifndef __TCMD_GOODSUP_H__ |
|
24 #define __TCMD_GOODSUP_H__ |
|
25 |
|
26 #include <e32base.h> |
|
27 #include <ssm/ssmutility.h> |
|
28 |
|
29 NONSHARABLE_CLASS(CCmdGoodSup) : public CActive, public MSsmUtility |
|
30 { |
|
31 public: |
|
32 IMPORT_C static MSsmUtility* NewL(); |
|
33 |
|
34 //from MSsmUtility |
|
35 void InitializeL(); |
|
36 void StartL(); |
|
37 void Release(); |
|
38 |
|
39 //from CActive |
|
40 void DoCancel(); |
|
41 void RunL(); |
|
42 TInt RunError(TInt aError); |
|
43 |
|
44 private: |
|
45 //from CBase |
|
46 CCmdGoodSup(); |
|
47 ~CCmdGoodSup(); |
|
48 }; |
|
49 |
|
50 #endif |