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 AknNoteWrappers.h
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
#ifndef C_TESTSDKNOTESRESOURCENOTEDIALOG_H
|
|
19 |
#define C_TESTSDKNOTESRESOURCENOTEDIALOG_H
|
|
20 |
|
|
21 |
// INCLUDES
|
|
22 |
|
|
23 |
#include <aknnotedialog.h>
|
|
24 |
|
|
25 |
/**
|
|
26 |
* CTestSDKNotesResourceNoteDialog test class for CAknResourceNoteDialog protected API.
|
|
27 |
*/
|
|
28 |
class CTestSDKNotesResourceNoteDialog : public CAknResourceNoteDialog
|
|
29 |
{
|
|
30 |
public:// Constructors and destructor
|
|
31 |
/**
|
|
32 |
* CTestSDKNotesResourceNoteDialog test function for testing the
|
|
33 |
* Test CTestSDKNotesResourceNoteDialog function
|
|
34 |
*/
|
|
35 |
inline CTestSDKNotesResourceNoteDialog( TInt aResId ) : CAknResourceNoteDialog( aResId )
|
|
36 |
{
|
|
37 |
}
|
|
38 |
|
|
39 |
/**
|
|
40 |
* CTestSDKNotesResourceNoteDialog test function for testing the
|
|
41 |
* Test CTestSDKNotesResourceNoteDialog function
|
|
42 |
*/
|
|
43 |
inline CTestSDKNotesResourceNoteDialog( TInt aResId, CAknNoteWrapper** aSelfPtr )
|
|
44 |
: CAknResourceNoteDialog( aResId, aSelfPtr )
|
|
45 |
{
|
|
46 |
}
|
|
47 |
|
|
48 |
/**
|
|
49 |
* Destructor.
|
|
50 |
*/
|
|
51 |
~CTestSDKNotesResourceNoteDialog()
|
|
52 |
{
|
|
53 |
|
|
54 |
}
|
|
55 |
};
|
|
56 |
|
|
57 |
|
|
58 |
|
|
59 |
#endif /*C_TESTSDKNOTESRESOURCENOTEDIALOG_H*/
|