equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: MXcapUriInterface |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef __XCAPURIINTERFACE__ |
|
22 #define __XCAPURIINTERFACE__ |
|
23 |
|
24 #include <e32base.h> |
|
25 |
|
26 //CLASS DECLARATION |
|
27 NONSHARABLE_CLASS( MXcapUriInterface ) |
|
28 { |
|
29 public: |
|
30 |
|
31 /** |
|
32 * Add new namespace mapping |
|
33 * @param TDesC8& Namespace URI |
|
34 * @param TDesC8& Namespace prefix |
|
35 * @return void |
|
36 */ |
|
37 virtual void AddNamespaceMappingL( const TDesC8& aUri, const TDesC8& aPrefix ) = 0; |
|
38 }; |
|
39 |
|
40 |
|
41 |
|
42 #endif //__XCAPURIINTERFACE__ |
|
43 |
|
44 // End of File |