equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 1998-2009 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 the License "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: |
|
15 * CUnifiedCertStoreCount class implementation |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 /** |
|
23 @file |
|
24 @internalTechnology |
|
25 */ |
|
26 |
|
27 #ifndef __T_UNIFIEDCERTSTORECOUNT_H__ |
|
28 #define __T_UNIFIEDCERTSTORECOUNT_H__ |
|
29 |
|
30 #include "t_certstoreactions.h" |
|
31 |
|
32 class CUnifiedCertStoreCount : public CCertStoreTestAction |
|
33 { |
|
34 public: |
|
35 virtual ~CUnifiedCertStoreCount(); |
|
36 virtual void PerformAction(TRequestStatus& aStatus); |
|
37 virtual void PerformCancel(); |
|
38 virtual void Reset(); |
|
39 |
|
40 protected: |
|
41 CUnifiedCertStoreCount(RFs& aFs, CConsoleBase& aConsole, Output& aOut); |
|
42 void ConstructL(const TTestActionSpec& aTestActionSpec); |
|
43 void DoReportAction(); |
|
44 void DoCheckResult(TInt aError); |
|
45 virtual void DoPerformAction() = 0; |
|
46 virtual void DoWriteResult() = 0; |
|
47 |
|
48 protected: |
|
49 TInt iCount; |
|
50 TKeyIdentifier iExpectCount; |
|
51 TKeyIdentifier iStoreIndex; |
|
52 }; |
|
53 |
|
54 #endif |