sl@0: // Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #ifndef SESSNOTF_H sl@0: #define SESSNOTF_H sl@0: sl@0: #include sl@0: #include "obsrvr_noc.h" sl@0: #include sl@0: #include "clientrequest.h" sl@0: sl@0: using namespace NCentralRepositoryConstants; sl@0: sl@0: class CSessionNotifier : public CBase, public MObserver sl@0: { sl@0: public: sl@0: CSessionNotifier(); sl@0: ~CSessionNotifier(); sl@0: sl@0: TInt AddRequest(TUint32 aId, TClientRequest aMessage); sl@0: TInt AddRequest(TUint32 aPartialId, TUint32 aIdMask, TClientRequest aMessage); sl@0: TInt CancelRequest(TUint32 aId); sl@0: TInt CancelRequest(TUint32 aPartialId, TUint32 aIdMask); sl@0: TInt CancelAllRequests(); sl@0: sl@0: void IdReportingOn(); sl@0: void IdReportingOff(); sl@0: sl@0: private: sl@0: void Notify(TUint32 aId); sl@0: sl@0: private: sl@0: TBool iIdReportingOn; sl@0: sl@0: struct SRequest sl@0: { sl@0: TUint32 id; sl@0: TClientRequest msg; sl@0: }; sl@0: RArray iRequests; sl@0: sl@0: struct SGroupRequest sl@0: { sl@0: TUint32 partialId; sl@0: TUint32 idMask; sl@0: TClientRequest msg; sl@0: }; sl@0: RArray iGroupRequests; sl@0: sl@0: enum { KArrayGranularity=1 }; sl@0: }; sl@0: sl@0: #endif // SESSNOTF_H