equal
deleted
inserted
replaced
|
1 // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file MNwssWapServer.h |
|
18 @warning : This file contains Rose Model ID comments - please do not delete |
|
19 */ |
|
20 #ifndef __MNWSSWAPSERVER_H__ |
|
21 #define __MNWSSWAPSERVER_H__ |
|
22 |
|
23 // System includes |
|
24 #include <wapcli.h> |
|
25 |
|
26 /** |
|
27 @since 7.0 |
|
28 This interface provides access to the WAP Stack Server via a handle owned by the interface |
|
29 implementor. It is used to narrow the API on the implementor for particular clients. |
|
30 */ |
|
31 //##ModelId=3C9B09470333 |
|
32 class MNwssWapServer |
|
33 { |
|
34 public: // Methods |
|
35 |
|
36 /**Obtain access to the WAP Stack Server via the returned handle. |
|
37 @since 7.0 |
|
38 @return Reference to a WAP Stack Server session handle. This must NOT be closed by the caller. |
|
39 */ |
|
40 //##ModelId=3C9B09470347 |
|
41 virtual RWAPServ& WapStack() = 0; |
|
42 }; |
|
43 |
|
44 #endif // __MNWSSWAPSERVER_H__ |