|
1 /* |
|
2 * Copyright (c) 2006-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: DrmRightsInfoImpl async command storage class |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // INCLUDE FILES |
|
20 #include "drmrightsinfodata.h" |
|
21 |
|
22 // ============================= LOCAL FUNCTIONS =============================== |
|
23 |
|
24 // ============================ MEMBER FUNCTIONS =============================== |
|
25 |
|
26 // ----------------------------------------------------------------------------- |
|
27 // CDrmRightsInfoData::NewLC |
|
28 // Two-Phase constructor |
|
29 // ----------------------------------------------------------------------------- |
|
30 // |
|
31 DRM::CDrmRightsInfoData* DRM::CDrmRightsInfoData::NewL() |
|
32 { |
|
33 DRM::CDrmRightsInfoData* self( NewLC() ); |
|
34 CleanupStack::Pop( self ); |
|
35 return self; |
|
36 } |
|
37 |
|
38 |
|
39 // ----------------------------------------------------------------------------- |
|
40 // CDrmRightsInfoData::NewLC |
|
41 // Two-Phase constructor |
|
42 // ----------------------------------------------------------------------------- |
|
43 // |
|
44 DRM::CDrmRightsInfoData* DRM::CDrmRightsInfoData::NewLC() |
|
45 { |
|
46 DRM::CDrmRightsInfoData* self( new (ELeave) CDrmRightsInfoData ); |
|
47 CleanupStack::PushL( self ); |
|
48 self->ConstructL(); |
|
49 return self; |
|
50 } |
|
51 |
|
52 // ----------------------------------------------------------------------------- |
|
53 // Constructor |
|
54 // ----------------------------------------------------------------------------- |
|
55 // |
|
56 DRM::CDrmRightsInfoData::CDrmRightsInfoData() |
|
57 { |
|
58 } |
|
59 |
|
60 // ----------------------------------------------------------------------------- |
|
61 // Destructor |
|
62 // ----------------------------------------------------------------------------- |
|
63 // |
|
64 DRM::CDrmRightsInfoData::~CDrmRightsInfoData() |
|
65 { |
|
66 delete iUniqueId; |
|
67 delete iUniqueId8; |
|
68 } |
|
69 |
|
70 // ----------------------------------------------------------------------------- |
|
71 // CDrmRightsInfoData::ConstructL |
|
72 // Second phase constructor |
|
73 // ----------------------------------------------------------------------------- |
|
74 // |
|
75 void DRM::CDrmRightsInfoData::ConstructL() |
|
76 { |
|
77 } |
|
78 |
|
79 |
|
80 // End of File |