Update contrib.
1 // Copyright (c) 2004-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.
20 #include "clientrequest.h"
22 class CSessionManager;
23 class CServerSubSession;
25 class CServerSession : public CSession2
28 virtual ~CServerSession();
31 //methods inherited from CSession2
32 virtual void ServiceError(const RMessage2 &aMessage, TInt aError);
33 virtual void ServiceL(const RMessage2& aMessage);
34 virtual void CreateL();
36 //methods for handling subsessions
37 CServerSubSession* NewSubSessionL(const RMessage2& aMessage);
38 void DeleteSubSession(TInt aHandle);
39 CServerSubSession* SubSessionFromHandle(const RMessage2& aMessage,TInt aHandle);
41 inline CSessionManager* Server();
44 CObjectCon* iContainer;
45 CObjectIx* iSubSessionIx;
47 //following methods and members are used for testing purposes only
48 #if defined(__CENTREP_SERVER_PERFTEST__) || defined (__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
49 TInt GetSetParameters(const TClientRequest& aMessage);
50 #endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__