telephonyserverplugins/multimodetsy/hayes/ATDIAL.CPP
changeset 20 244d7c5f118e
parent 0 3553901f7fa8
child 24 6638e7f4bd8f
child 66 07a122eea281
--- a/telephonyserverplugins/multimodetsy/hayes/ATDIAL.CPP	Fri Mar 19 09:55:57 2010 +0200
+++ b/telephonyserverplugins/multimodetsy/hayes/ATDIAL.CPP	Fri Apr 16 16:12:37 2010 +0300
@@ -774,63 +774,3 @@
 
 	return EFalse;		// We were unable to send a +CBST string 
 	}
-
-
-
-//
-//	CATDialFax
-//
-
-CATDialFax*	 CATDialFax::NewL(CATIO* aIo, CTelObject* aTelObject,CATInit* aInit,CPhoneGlobals* aPhoneGlobals)
-	{
-	CATDialFax* dial=new(ELeave) CATDialFax(aIo, aTelObject, aInit,aPhoneGlobals);
-	CleanupStack::PushL(dial);
-	dial->ConstructL();
-	CleanupStack::Pop();
-	return dial;
-	}
-
-CATDialFax::CATDialFax(CATIO* aIo, CTelObject* aTelObject,CATInit* aInit,CPhoneGlobals* aPhoneGlobals)
-											: CATFaxCallConnectCommands(aIo,aTelObject,aInit,aPhoneGlobals)
-	{}
-
-CATDialFax::~CATDialFax()
-	{
-	iIo->WriteAndTimerCancel(this);	
-	}
-
-void CATDialFax::Start(TTsyReqHandle aTsyReqHandle, TAny* aParams)
-	{
-	LOGTEXT(_L8("Starting dial fax call command"));
-	iTelnum=REINTERPRET_CAST(TDesC*,aParams);
-	CATFaxCallConnectCommands::Start(aTsyReqHandle,aParams);
-	}
-
-void CATDialFax::Stop(TTsyReqHandle aTsyReqHandle)
-	{
-	LOGTEXT(_L8("Cancelling Dial Fax Call Command"));
-	CATFaxCallConnectCommands::Stop(aTsyReqHandle);
-	}
-
-void CATDialFax::EventSignal(TEventSource aSource)
-	{
-	if((aSource==ETimeOutCompletion)
-		&&(iPreConnectState!=EATWaitForATCheckOK))
-		{
-		LOGTEXT(_L8("Timeout Error during Dial"));
-		Complete(KErrTimedOut,aSource);
-		return;
-		}
-
-	if (iPreConnectState!=CATCallConnectCommands::EATInitCompleted
-		&& iPreConnectState!=CATCallConnectCommands::ENotInProgress)
-		{
-		CATCallConnectCommands::PreConnectEventSignal(aSource);
-		}
-	}
-
-void CATDialFax::CompleteSuccessfully()
-	{
-	REINTERPRET_CAST(CCallMobileFax*,iTelObject)->FaxDial(iReqHandle,iTelnum);	
-	}
-