os/persistentdata/traceservices/tracefw/ulogger/src/uloggerserver/uloggersession.h
Update contrib.
1 // Copyright (c) 2007-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.
14 // ULogger Server header file
24 #ifndef ULOGGERSESSION_H_
25 #define ULOGGERSESSION_H_
27 #include "uloggerserver.h"
32 This class is responsible for servicing the client requests sent. It forms the back-end server side of
33 each client connection to Ulogger server and implements the ServiceL() to service all client requests.
35 class CULoggerSession : public CSession2
38 static CULoggerSession* NewL(RThread& aClient, CULoggerServer& aServer);
39 static CULoggerSession* NewLC(RThread& aClient, CULoggerServer& aServer);
43 void ServiceL(const RMessage2& aMessage);
45 CULoggerSession(RThread& aClient, CULoggerServer& aServer);
48 void SendIntegerL(const RMessage2& aMessage, TUint32 aInt);
49 //void PanicClient(TInt aPanic) const;
53 CULoggerServer& iServer;
57 #endif /*ULOGGERSESSION_H_*/