24
|
1 |
/**
|
|
2 |
* Copyright (c) 2006-2009 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:
|
|
15 |
* Header file declaring the RawIP Provisioning structures.
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
/**
|
|
23 |
@file
|
|
24 |
@internalTechnology
|
|
25 |
*/
|
|
26 |
|
|
27 |
#ifndef RAWIPAGENTHANDLER_H_
|
|
28 |
#define RAWIPAGENTHANDLER_H_
|
|
29 |
|
|
30 |
#include <comms-infras/agentmessages.h>
|
|
31 |
#include <comms-infras/linkprovision.h>
|
|
32 |
#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
|
|
33 |
#include <comms-infras/nifprvar_internal.h>
|
|
34 |
#endif
|
|
35 |
|
|
36 |
class CRawIpAgentConfig;
|
|
37 |
|
|
38 |
NONSHARABLE_CLASS(CRawIpAgentHandler) : public CAgentNotificationHandler
|
|
39 |
{
|
|
40 |
private:
|
|
41 |
virtual void ConnectCompleteL();
|
|
42 |
virtual TInt NotificationFromAgent(TAgentToFlowEventType aEvent, TAny* aInfo);
|
|
43 |
|
|
44 |
private:
|
|
45 |
CRawIpAgentConfig* iProvision; // pointer to provisioning structure to populate (ownership ultimately
|
|
46 |
// given to AccessPointConfig, so do not clean up on destruction)
|
|
47 |
};
|
|
48 |
|
|
49 |
#endif
|
|
50 |
// RAWIPAGENTHANDLER_H_
|