sapi_logging/tsrc/testing/tloggingservicetest/inc/tlogcallback.h
changeset 0 14df0fbfcc4e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sapi_logging/tsrc/testing/tloggingservicetest/inc/tlogcallback.h	Mon Mar 30 12:51:10 2009 +0300
@@ -0,0 +1,50 @@
+/*
+* Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  
+*
+*/
+
+/**
+ * Forward declartaions
+ */
+
+#include<e32def.h>
+#include"logiter.h" 
+ class MLoggingCallback ;
+ class CSapiEvent ;
+ class CActiveSchedulerWait ;
+
+/**
+ * Generic call back function
+ */
+NONSHARABLE_CLASS (MLogCallback):public MLoggingCallback
+{
+	public:
+	 void HandleNotifyL(TUint aTransid ,TUint aStatus , CLogIter *iter )  ;
+	 
+	 void CancelNotifyL(TUint aTransid);
+								   
+	 MLogCallback() ;
+	 
+	 //---------------------------------------------------------
+	 // Starts the wait loop
+	 //---------------------------------------------------------
+	 void Start() ;
+	 ~MLogCallback() ;
+	 
+	 
+								   
+	private :							   
+	   CActiveSchedulerWait *iScheduler ;
+};