Update contrib.
2 * Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * testutil - server classes
28 #include "testutilssessioncommon.h"
30 class CTestUtilServer : public CServer2
33 static CServer2* NewLC();
34 virtual ~CTestUtilServer();
37 void Send(const TDesC& aMessage);
39 inline CFileMan& FileMan();
43 CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
48 CTestUtilSessionCommon* iTestUtilSessionCommon;
51 // CTestUtilServer inlines
52 inline CTestUtilServer::CTestUtilServer()
53 :CServer2(0,ESharableSessions)
56 inline RFs& CTestUtilServer::FS()
61 inline CFileMan& CTestUtilServer::FileMan()