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: Download operation interface definition |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef M_NCD_RIGHTS_OBJECT_OPERATION_H |
|
20 #define M_NCD_RIGHTS_OBJECT_OPERATION_H |
|
21 |
|
22 #include <e32cmn.h> |
|
23 |
|
24 #include "ncdoperation.h" |
|
25 #include "ncdinterfaceids.h" |
|
26 #include "ncdoperationdatatypes.h" |
|
27 |
|
28 /** |
|
29 * DRM rights object download and install operation interface. |
|
30 * |
|
31 * Rights object operation handles downloading a DRM rights object from a |
|
32 * given URI and installing the rights object (adding the rights to the terminal |
|
33 * so that contents protected with the rights can be used). |
|
34 * |
|
35 * |
|
36 */ |
|
37 class MNcdRightsObjectOperation : public MNcdOperation |
|
38 { |
|
39 |
|
40 public: |
|
41 |
|
42 /** |
|
43 * Unique identifier for the interface, required for all MCatalogsBase interfaces. |
|
44 * |
|
45 * |
|
46 */ |
|
47 enum { KInterfaceUid = ENcdRightsObjectOperationUid }; |
|
48 |
|
49 |
|
50 protected: |
|
51 |
|
52 /** |
|
53 * Destructor. |
|
54 * |
|
55 * @see MCatalogsBase::~MCatalogsBase |
|
56 */ |
|
57 virtual ~MNcdRightsObjectOperation() {} |
|
58 |
|
59 }; |
|
60 |
|
61 |
|
62 #endif // M_NCD_DOWNLOAD_OPERATION_H |