diff -r 156f692b1687 -r b99b84bcd2d1 activityfw/activitydatabase/hsactivitydbserver/inc/activityserver.h --- a/activityfw/activitydatabase/hsactivitydbserver/inc/activityserver.h Fri Jun 11 13:58:37 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,97 +0,0 @@ -/* -* 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 ACTIVITYSERVER_H -#define ACTIVITYSERVER_H - -#define __E32SVR_H__ - -// INCLUDES -#include -#include -#include // RFs - -#include "activitytaskstorage.h" - -class CActivityStorage; -/** - * CActivityServer - * - */ -class CActivityServer : public CServer2, - public MActivityTaskStorage -{ -public: - /** - * Destructor. - */ - ~CActivityServer(); - - /** - * Two-phased constructor. - */ - static CActivityServer* NewLC(); - -public: - /** - * Interface implementation - * @see MActivityTaskStorage::PushL(CActivityTask *) - */ - void PushL(CActivityTask *); - - /** - * Interface implementation - * @see MActivityTaskStorage::Pop(CActivityTask *) - */ - void Pop(CActivityTask *); - - /** - * Interface implementation - * @see MActivityTaskStorage::StorageData() - */ - const RPointerArray& StorageData() const; - - -private: - - /** - * Constructor for performing 1st stage construction - */ - CActivityServer(); - - /** - * 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; - - /** - * Removes not valid task - */ - void RemoveNotValidTasks(const CSession2* session); - -private: - RFs mFsSession; - CActivityStorage* mStorage; - RPointerArray mObservers; -}; - -#endif // ACTIVITYSERVER_H