os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerwatcher.h
Update contrib.
1 // Copyright (c) 2007-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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // ULogger data watcher
25 #ifndef __ULOGGERWATCHER_H__
26 #define __ULOGGERWATCHER_H__
34 /**MDataWatcherObserver class
36 class MDataWatcherObserver
39 virtual void DataNotification() = 0;
45 /**CULoggerWatcher class
47 class CULoggerWatcher : public CActive
50 static CULoggerWatcher* NewL();
51 static CULoggerWatcher* NewLC();
58 inline TRequestStatus& GetStatus(){return iStatus;}
59 void StartWatching(MDataWatcherObserver* aObserver);
60 inline void StopWatching()
73 MDataWatcherObserver* iObserver;
76 #endif //__ULOGGERWATCHER_H__