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: project specification |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef __MUSWPADAPTERSTUBS_H__ |
|
20 #define __MUSWPADAPTERSTUBS_H__ |
|
21 |
|
22 #include <mwppairvisitor.h> |
|
23 #include <e32def.h> |
|
24 #include <e32cmn.h> |
|
25 |
|
26 class TPairVisitorStub : public MWPPairVisitor |
|
27 { |
|
28 public: |
|
29 |
|
30 void VisitPairL(const TDesC16& /*aName*/, const TDesC16& /*aValue*/); |
|
31 |
|
32 }; |
|
33 |
|
34 |
|
35 |
|
36 |
|
37 _LIT( KMusSummaryTitle, "Video sharing" ); |
|
38 |
|
39 /** |
|
40 * Stub for a class WPAdapterUtil which is located in library ProvisioningEngine |
|
41 * Stub does not contain all the functions present in original version. |
|
42 */ |
|
43 class WPAdapterUtil |
|
44 { |
|
45 public: // New functions |
|
46 |
|
47 /** |
|
48 * Stubbed version returns a const value despite of params |
|
49 */ |
|
50 static HBufC* ReadHBufCL( const TDesC& aDllPath, |
|
51 const TDesC& aAdapterName, TInt aResourceId ); |
|
52 |
|
53 }; |
|
54 |
|
55 |
|
56 |
|
57 #endif // __MUSWPADAPTERSTUBS_H__ |
|