Update contrib.
1 // Copyright (c) 2002-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.
16 #ifndef __LOGVIEWOBSERVER_H__
17 #define __LOGVIEWOBSERVER_H__
28 class CLogChangeDefinition;
29 class MLogViewChangeObserverInternal;
32 /////////////////////////////////////////////////////////////////////////////////////////
33 // -----> CLogViewObserver (header)
34 /////////////////////////////////////////////////////////////////////////////////////////
35 NONSHARABLE_CLASS(CLogViewObserver) : public CActive
41 static CLogViewObserver* NewL(CLogView& aView, CLogClient& aClient, MLogViewChangeObserverInternal& aObserver, TLogViewId aViewId, TInt aPriority);
45 CLogViewObserver(CLogView& aView, CLogClient& aClient, MLogViewChangeObserverInternal& aObserver, TLogViewId aViewId, TInt aPriority);
49 void RequestChanges();
51 private: // FROM CActive
54 TInt RunError(TInt aError);
57 void RequestChangesCancel();
58 void FetchChangesL(TInt aBufferSizeRequired);
59 void NotifyObserverL();
63 MLogViewChangeObserverInternal& iObserver;
65 CLogChangeDefinition* iChanges;