26
|
1 |
/*
|
|
2 |
* Copyright (c) 2002-2004 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: Interface class for Networkhandling
|
|
15 |
*
|
|
16 |
*/
|
|
17 |
|
|
18 |
|
|
19 |
#ifndef CNWSESSION_H
|
|
20 |
#define CNWSESSION_H
|
|
21 |
|
|
22 |
// INCLUDES
|
|
23 |
#include "NWHandlingEngine.h"
|
|
24 |
|
|
25 |
|
|
26 |
// CLASS DECLARATION
|
|
27 |
/**
|
|
28 |
* Interface class for Networkhandling
|
|
29 |
*
|
|
30 |
*
|
|
31 |
* @lib networkhandling.lib
|
|
32 |
* @since Series 60_2.8
|
|
33 |
*/
|
|
34 |
class CNWSession : public CBase
|
|
35 |
{
|
|
36 |
public: // Constructors and destructor
|
|
37 |
|
|
38 |
/**
|
|
39 |
* Destructor.
|
|
40 |
*/
|
|
41 |
IMPORT_C virtual ~CNWSession();
|
|
42 |
|
|
43 |
|
|
44 |
protected:
|
|
45 |
|
|
46 |
/**
|
|
47 |
* C++ default constructor.
|
|
48 |
*/
|
|
49 |
CNWSession();
|
|
50 |
|
|
51 |
};
|
|
52 |
|
|
53 |
#endif // CNWSession_H
|
|
54 |
|
|
55 |
// End of File
|