telephonyprotocols/umtsgprsscpr/spudtel/inc/ceteldrivernotifier.h
changeset 64 b34bb05ac869
parent 56 ab72d5c1d770
equal deleted inserted replaced
56:ab72d5c1d770 64:b34bb05ac869
     1 // Copyright (c) 2004-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 // service change notify
       
    15 // 
       
    16 //
       
    17 
       
    18 /**
       
    19  @file 
       
    20  @internalComponent
       
    21 */
       
    22 
       
    23 #ifndef CETELDRIVERNOTIFIER_H
       
    24 #define CETELDRIVERNOTIFIER_H
       
    25 
       
    26 #include <e32base.h>
       
    27 
       
    28 class CPdpFsmInterface;
       
    29 
       
    30 
       
    31 /** base notifier class */
       
    32 class CEtelDriverNotifier : public CActive
       
    33 	{
       
    34 public:
       
    35 	CEtelDriverNotifier(CPdpFsmInterface& aPdpFsmInterface);
       
    36 
       
    37 	/** starts notifications */
       
    38 	virtual void Start() = 0;
       
    39 
       
    40 protected:
       
    41 	/** notifies SPUD FSM about network events */
       
    42 	virtual void Notify(const TRequestStatus& aStatus) = 0;
       
    43 
       
    44 	// CActive methods
       
    45 	virtual void RunL();
       
    46 
       
    47 protected:
       
    48 	/** Pdp Fsm Interface for FSM notification */
       
    49 	CPdpFsmInterface&	iPdpFsmInterface;
       
    50 	};
       
    51 
       
    52 #endif // CETELDRIVERNOTIFIER_H