telephonyserverplugins/multimodetsy/test/Te_LoopBack/Te_LoopBackrestartsignal.h
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Te_LoopbackCRestartSignal.H
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file
       
    20  @internalComponent 
       
    21 */
       
    22 
       
    23 
       
    24 #ifndef __CRESTART_SIGNAL_H__
       
    25 #define __CRESTART_SIGNAL_H__
       
    26 
       
    27 #include <e32base.h>
       
    28 
       
    29 class CATScriptEng;
       
    30 class CRestartSignal : public CActive
       
    31 	{
       
    32 public:
       
    33 	static CRestartSignal* NewL(CATScriptEng* aScriptEng);
       
    34 	CRestartSignal(CATScriptEng* aScriptEng);
       
    35 	void Start(TRequestStatus** aStatus);
       
    36 	~CRestartSignal();
       
    37 	void DoCancel();
       
    38 	void RunL();
       
    39 private:
       
    40 	CATScriptEng* iScriptEng;
       
    41 	};
       
    42 
       
    43 #endif