24
|
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 in state machine.
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
/**
|
|
23 |
@file Nd_dlin.h
|
|
24 |
@internalComponent
|
|
25 |
*/
|
|
26 |
|
|
27 |
#ifndef __ND_DLIN_H__
|
|
28 |
#define __ND_DLIN_H__
|
|
29 |
|
|
30 |
#include "Nd_Bases.h"
|
|
31 |
|
|
32 |
// Forward declarations
|
|
33 |
|
|
34 |
class CCommsDbAccess;
|
|
35 |
class CTelServerProcessor;
|
|
36 |
class CEventLogger;
|
|
37 |
class CNetDialScript;
|
|
38 |
|
|
39 |
class CDlInAgXSM : public CNetdialSM
|
|
40 |
/**
|
|
41 |
Dial In state machine.
|
|
42 |
|
|
43 |
@internalComponent
|
|
44 |
*/
|
|
45 |
{
|
|
46 |
public:
|
|
47 |
static CDlInAgXSM* NewL(MAgentNotify& aControllerObserver, CDialogProcessor* aDlgPrc, CCommsDbAccess& aDbAccess);
|
|
48 |
virtual ~CDlInAgXSM();
|
|
49 |
// CNetdialSM Inheritance Polymorphism
|
|
50 |
virtual TBool UseScript() const;
|
|
51 |
virtual void SetUpScriptL();
|
|
52 |
virtual TBool IsReconnect() const;
|
|
53 |
// CAgentSMBase Inheritance
|
|
54 |
virtual TInt Notification(TNifToAgentEventType aEvent, TAny* aInfo);
|
|
55 |
virtual TInt IncomingConnectionReceived();
|
|
56 |
private:
|
|
57 |
CDlInAgXSM(MAgentNotify& aObserver, CDialogProcessor* aDlgPrc, CCommsDbAccess& aDbAccess);
|
|
58 |
virtual void ConstructL();
|
|
59 |
};
|
|
60 |
|
|
61 |
#endif
|