45
|
1 |
/*
|
|
2 |
* Copyright (c) 2002 - 2007 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: Test EIKPROGI.H
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef C_TESTSDKNOTESPROGRESSINFO_H
|
|
19 |
#define C_TESTSDKNOTESPROGRESSINFO_H
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
#include <eikprogi.h>
|
|
23 |
|
|
24 |
/**
|
|
25 |
* CTestSDKNotesProgressInfo test class for CEikProgressInfo protected API.
|
|
26 |
*/
|
|
27 |
class CTestSDKNotesProgressInfo : public CEikProgressInfo
|
|
28 |
{
|
|
29 |
public:// Constructors and destructor
|
|
30 |
|
|
31 |
/**
|
|
32 |
* Two-phased constructor.
|
|
33 |
*/
|
|
34 |
static CTestSDKNotesProgressInfo* NewLC( const SInfo& aProgInfo );
|
|
35 |
|
|
36 |
/**
|
|
37 |
* Destructor.
|
|
38 |
*/
|
|
39 |
~CTestSDKNotesProgressInfo();
|
|
40 |
|
|
41 |
public:
|
|
42 |
/**
|
|
43 |
* EvaluateText test function for testing the
|
|
44 |
* Test EvaluateText function
|
|
45 |
*/
|
|
46 |
const TDesC* EvaluateText( TDes& aTextBuf ) const;
|
|
47 |
|
|
48 |
/**
|
|
49 |
* WriteInternalStateL test function for testing the
|
|
50 |
* Test WriteInternalStateL function
|
|
51 |
*/
|
|
52 |
void WriteInternalStateL( RWriteStream& aWriteStream ) const;
|
|
53 |
private:
|
|
54 |
/**
|
|
55 |
* By default Symbian 2nd phase constructor is private.
|
|
56 |
*/
|
|
57 |
void ConstructL();
|
|
58 |
|
|
59 |
/**
|
|
60 |
* Constructors
|
|
61 |
*/
|
|
62 |
CTestSDKNotesProgressInfo( const SInfo& aProgInfo );
|
|
63 |
};
|
|
64 |
|
|
65 |
|
|
66 |
|
|
67 |
#endif /*C_TESTSDKNOTESPROGRESSINFO_H*/
|