equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2003-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 for NetDial dial up state machine. |
|
16 * |
|
17 * |
|
18 */ |
|
19 |
|
20 |
|
21 |
|
22 /** |
|
23 @file Nd_dlup.h |
|
24 @internalComponent |
|
25 */ |
|
26 |
|
27 #if !defined(__ND_DLUP_H__) |
|
28 #define __ND_DLUP_H__ |
|
29 |
|
30 #include "Nd_Bases.h" |
|
31 |
|
32 // Forward declarations |
|
33 class CTelServerProcessor; |
|
34 class CEventLogger; |
|
35 class CNetDialScript; |
|
36 |
|
37 class CDlUpAgXSM : public CNetdialSM |
|
38 /** |
|
39 Dial Up state machine |
|
40 |
|
41 @internalComponent |
|
42 */ |
|
43 { |
|
44 public: |
|
45 static CDlUpAgXSM* NewL(MAgentNotify& aControllerObserver, CDialogProcessor* aDlgPrc, CCommsDbAccess& aDbAccess); |
|
46 virtual ~CDlUpAgXSM(); |
|
47 //CNetdialSM Inheritence |
|
48 virtual void SetUpScriptL(); |
|
49 // Derived from CAgentSMBase |
|
50 virtual TInt Notification(TNifToAgentEventType aEvent, TAny* aInfo); |
|
51 virtual TInt IncomingConnectionReceived(); |
|
52 private: |
|
53 CDlUpAgXSM(MAgentNotify& aObserver, CDialogProcessor* aDlgPrc, CCommsDbAccess& aDbAccess); |
|
54 virtual void ConstructL(); |
|
55 }; |
|
56 |
|
57 #endif |