networkingtestandutils/networkingunittest/tdummynif/TNifNotify.h
changeset 0 af10295192d8
equal deleted inserted replaced
-1:000000000000 0:af10295192d8
       
     1 // Copyright (c) 2003-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 //
       
    15  
       
    16 #ifndef __TNIFNOTIFY_H__
       
    17 #define __TNIFNOTIFY_H__
       
    18 
       
    19 #include <comms-infras/nifprvar.h>
       
    20 
       
    21 class MDummyNifToAgtHarnessNotify
       
    22 /**
       
    23 @internalComponent
       
    24 */ 
       
    25 	{
       
    26 public:
       
    27 	// Used by the test harness to intercept Agent to Nif Events
       
    28 	virtual TInt Notification(TAgentToNifEventType aEvent, TAny* aInfo)=0;
       
    29 
       
    30 	// Informs the test harness of the AgentProgress, used for some test cases
       
    31 	virtual void AgentProgress(TInt aStage, TInt aError)=0;
       
    32 	};
       
    33 
       
    34 #endif