diff -r 4bc7b118b3df -r 397d00875918 tstaskmonitor/server/inc/hsrunningappserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tstaskmonitor/server/inc/hsrunningappserver.h Thu May 27 13:11:12 2010 +0300 @@ -0,0 +1,75 @@ +/* +* 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 "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: +* +*/ +#ifndef RUNNINGAPPSERVER_H +#define RUNNINGAPPSERVER_H + +// INCLUDES +#include +#include + +#include "hsdataobserver.h" + +class CRunningAppStorage; +/** + * CRunningAppServer + * + */ +class CRunningAppServer : public CServer2, + public MHsDataObserver, + public MHsDataObserverStorage +{ +public: + /** + * Destructor. + */ + ~CRunningAppServer(); + + /** + * Two-phased constructor. + */ + static CRunningAppServer* NewLC(); + +public: //MHsDataObserver + void DataChanged(); + +public: //MHsDataObserverStorage + void PushL(CHsDataObserver*); + void Pop(CHsDataObserver*); + void Cancel(const RMessage2&); + +private: + /** + * Constructor for performing 1st stage construction + */ + CRunningAppServer(); + + /** + * Default constructor for performing 2nd stage construction + */ + void ConstructL(); + + /** + * Interface implementation + * @see CServer2::NewSessionL(const TVersion&, const RMessage2&) + */ + CSession2* NewSessionL(const TVersion& version, const RMessage2& message) const; +private: + RPointerArray mObservers; + CRunningAppStorage* mStorage; +}; + +#endif // RUNNINGAPPSERVER_H