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 the License "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: TVcxHgMyVideosFullDrmInfo class definition* |
|
15 */ |
|
16 |
|
17 |
|
18 |
|
19 |
|
20 #ifndef VCXHGMYVIDEOSFULLDRMINFO_H |
|
21 #define VCXHGMYVIDEOSFULLDRMINFO_H |
|
22 |
|
23 // INCLUDE FILES |
|
24 #include <e32base.h> |
|
25 #include <badesca.h> |
|
26 #include <coemain.h> |
|
27 |
|
28 /** |
|
29 * Collects the drm info of item and puts strings to given array |
|
30 * |
|
31 * @lib |
|
32 */ |
|
33 class TVcxHgMyVideosFullDrmInfo |
|
34 { |
|
35 public: // Constructors and destructor |
|
36 |
|
37 /** |
|
38 * Static method for getting full OMA or WM DRM information of video clip. |
|
39 * |
|
40 * @param aArray Array which is filled with DRM information, to be |
|
41 * displayed in info popup. |
|
42 * @param aFullPath Full path to item which DRM info is needed. |
|
43 */ |
|
44 static void GetFullDrmInfoL( CDesCArray& aArray, |
|
45 const TDesC& aFullPath ); |
|
46 |
|
47 protected: |
|
48 |
|
49 /** |
|
50 * C++ default constructor. |
|
51 */ |
|
52 TVcxHgMyVideosFullDrmInfo(); |
|
53 |
|
54 |
|
55 /** |
|
56 * Destructor. |
|
57 */ |
|
58 ~TVcxHgMyVideosFullDrmInfo(); |
|
59 }; |
|
60 |
|
61 #endif // VCXHGMYVIDEOSFULLDRMINFO_H |