|
1 /* |
|
2 * Copyright (c) 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: Active Scheduler Test Module |
|
15 * |
|
16 */ |
|
17 |
|
18 // Des8Parameters.h: interface for the CUrlParameters class. |
|
19 // |
|
20 ////////////////////////////////////////////////////////////////////// |
|
21 |
|
22 //#if !defined(AFX_URLPLAYPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_) |
|
23 //#define AFX_URLPLAYPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_ |
|
24 |
|
25 //#if _MSC_VER > 1000 |
|
26 //#pragma once |
|
27 //#endif // _MSC_VER > 1000 |
|
28 |
|
29 #ifndef __URLPLAY_PARAMETERS |
|
30 #define __URLPLAY_PARAMETERS |
|
31 |
|
32 #include "Parameters.h" |
|
33 |
|
34 class CUrlParameters : public CParameters |
|
35 { |
|
36 protected: |
|
37 |
|
38 public: |
|
39 CUrlParameters(TInt aAction, TDesC &aUrl, TInt aIapId, TDesC8 &aMimeType); |
|
40 |
|
41 //static CUrlParameters* NewL(TInt aAction, TDesC &aUrl, TInt aIapId, TDesc8 &aMimeType); |
|
42 //static CUrlParameters* NewLC(TInt aAction, TDesC &aUrl, TInt aIapId, TDesc8 &aMimeType); |
|
43 //virtual ~CUrlParameters(); |
|
44 |
|
45 TDesC8 &GetMimeType(); |
|
46 TDesC &GetUrl(); |
|
47 TInt GetIapId(); |
|
48 |
|
49 private: |
|
50 //void ConstructL(TDesC8 &aDes8); |
|
51 TDesC8 &iMimeType; |
|
52 TInt iIapId; |
|
53 TDesC &iUrl; |
|
54 }; |
|
55 |
|
56 //#endif // !defined(AFX_URLPLAYPARAMETERS_H__77EC4487_6A81_4A9B_9CAE_C4D9913B5017__INCLUDED_) |
|
57 #endif //__URLPLAY_PARAMETERS |