equal
deleted
inserted
replaced
1 /* |
|
2 * Copyright (c) 2006 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef VUICMESSAGEQUERYDIALOG_H |
|
20 #define VUICMESSAGEQUERYDIALOG_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <aknmessagequerydialog.h> |
|
24 |
|
25 // CLASS DECLARATION |
|
26 /** |
|
27 * |
|
28 * |
|
29 */ |
|
30 NONSHARABLE_CLASS( CMessageQueryDialog ) : public CAknMessageQueryDialog |
|
31 { |
|
32 public: // Constructors and destructor |
|
33 |
|
34 /** |
|
35 * Symbian two-phased constructor. |
|
36 */ |
|
37 static CMessageQueryDialog* NewL( CMessageQueryDialog** aSelf ); |
|
38 |
|
39 /** |
|
40 * Destructor. |
|
41 */ |
|
42 virtual ~CMessageQueryDialog(); |
|
43 |
|
44 public: // New functions |
|
45 |
|
46 protected: // Functions from base classes |
|
47 |
|
48 private: // New functions |
|
49 |
|
50 /** |
|
51 * C++ default constructor. |
|
52 */ |
|
53 CMessageQueryDialog( CMessageQueryDialog** aSelf ); |
|
54 |
|
55 /** |
|
56 * Symbian OS 2nd phase constructor. |
|
57 */ |
|
58 virtual void ConstructL(); |
|
59 |
|
60 private: // Data |
|
61 |
|
62 // Address of self pointer |
|
63 CMessageQueryDialog** iSelf; |
|
64 }; |
|
65 |
|
66 #endif // VUICMESSAGEQUERYDIALOG_H |
|
67 |
|
68 // End of File |
|