diff -r 000000000000 -r af10295192d8 networkcontrol/commsuserpromptmgr/database/inc/netupsprocessentry.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/networkcontrol/commsuserpromptmgr/database/inc/netupsprocessentry.h Tue Jan 26 15:23:49 2010 +0200 @@ -0,0 +1,66 @@ +// Copyright (c) 2007-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: +// This file provides the interface specification for the Net Ups Process Entry. +// @internalAll +// @prototype +// +// + +#ifndef NETUPSPROCESSENTRY_H +#define NETUPSPROCESSENTRY_H + +#include // defines CBase +#include // defines TProcessId + +#include "netupsstatedef.h" // defines TNetUpsState + +#include // defines the comms debug logging utility + +namespace NetUps +{ +class CThreadEntry; +class CProcessMonitor; +class CUpsStateMachine; + +NONSHARABLE_CLASS(CProcessEntry) : public CBase +{ +public: + static CProcessEntry* NewL(CDatabaseEntry& aDatabaseEntry, const TProcessId& aProcessId, CUpsStateMachine& aUpsStateMachine); + virtual ~CProcessEntry(); + + void SetNetUpsState(TNetUpsState aNetUpsState); + TNetUpsState NetUpsState() const; + RPointerArray& ThreadEntry(); + void SetProcessMonitor(CProcessMonitor* aProcessMonitor); + CProcessMonitor* ProcessMonitor() const; // client code tests for Null Pointer + const TProcessId& ProcessId() const; + CUpsStateMachine& UpsStateMachine() const; +protected: // class may be specialised by NetUps clients if required + CProcessEntry(const TProcessId& aProcessId, CUpsStateMachine& aUpsStateMachine); +private: + void ConstructL(CDatabaseEntry& aDatabaseEntry); +private: + TNetUpsState iNetUpsState; + RPointerArray iThreadEntry; + CProcessMonitor* iProcessMonitor;// object life cycle may be shorter than CThreadEntry + TProcessId iProcessId; + CUpsStateMachine& iUpsStateMachine; +private: + __FLOG_DECLARATION_MEMBER; + }; + +} // end of namespace + +#endif // NETUPSPROCESSENTRY_H +