os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggerwatcher.cpp
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.
17 #include "uloggerwatcher.h"
25 CULoggerWatcher* CULoggerWatcher::NewL()
27 CULoggerWatcher* self = CULoggerWatcher::NewLC();
28 CleanupStack::Pop(); //self
35 CULoggerWatcher* CULoggerWatcher::NewLC()
37 CULoggerWatcher* self = new (ELeave) CULoggerWatcher();
38 CleanupStack::PushL(self);
44 default constructor method
46 CULoggerWatcher::CULoggerWatcher()
47 : CActive(CActive::EPriorityUserInput)
52 default destructor method
55 CULoggerWatcher::~CULoggerWatcher()
63 void CULoggerWatcher::ConstructL()
65 CActiveScheduler::Add(this);
72 void CULoggerWatcher::DoCancel()
80 void CULoggerWatcher::RunL()
82 if(iStatus.Int() == KErrNone)
83 iObserver->DataNotification();
91 void CULoggerWatcher::StartWatching(MDataWatcherObserver* aObserver)
95 iObserver = aObserver;