equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2008 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: Interface class for WMDRM DLA App Document |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef C_WMDRMDLAAPPDOCUMENT_H |
|
20 #define C_WMDRMDLAAPPDOCUMENT_H |
|
21 |
|
22 // INCLUDES |
|
23 #include <akndoc.h> |
|
24 |
|
25 class CWmDrmDlaAppDocument : public CAknDocument |
|
26 { |
|
27 |
|
28 public: // Constructors and destructor |
|
29 |
|
30 /** |
|
31 * Two-phased constructor. Leaves on failure. |
|
32 * @param aApp Application. |
|
33 * @return The created document. |
|
34 */ |
|
35 static CWmDrmDlaAppDocument* NewL( CEikApplication& aApp ); |
|
36 |
|
37 /** |
|
38 * Destructor. |
|
39 */ |
|
40 virtual ~CWmDrmDlaAppDocument(); |
|
41 |
|
42 public: // from CEikDocument |
|
43 |
|
44 /** |
|
45 * Create Application Ui. |
|
46 * @return Pointer to App Ui. |
|
47 */ |
|
48 CEikAppUi* CreateAppUiL(); |
|
49 |
|
50 public: // Constructors |
|
51 |
|
52 /** |
|
53 * Constructor. |
|
54 * @param aApp Application. |
|
55 */ |
|
56 CWmDrmDlaAppDocument( CEikApplication& aApp ); |
|
57 |
|
58 /** |
|
59 * Second phase constructor. Leaves on failure. |
|
60 */ |
|
61 void ConstructL(); |
|
62 |
|
63 private: // data |
|
64 |
|
65 }; |
|
66 |
|
67 #endif // C_WMDRMDLAAPPDOCUMENT_H |