tacticonserver/server/inc/tacticonsession.h
changeset 0 d54f32e146dd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tacticonserver/server/inc/tacticonsession.h	Thu Dec 17 08:53:38 2009 +0200
@@ -0,0 +1,84 @@
+/*
+* 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: Tacticon server session implementation.
+* Part of    : Tacticon Server
+*/
+
+#ifndef C_TACTICONSESSION_H
+#define C_TACTICONSESSION_H
+
+// INCLUDES
+#include <e32base.h>
+
+//  FORWARD DECLARATIONS
+class CTacticonServer;
+
+/**
+*  A session class of Tacticon server.
+*
+*  @since S60 5.2
+*/
+
+class CTacticonSession : public CSession2
+    {
+public:
+    /**
+    * C++ constructor.
+    */
+    CTacticonSession();
+    
+    /**
+     * Passes the request forward to DispatchMessageL. 
+     * @param aMessage, a message from client.
+     */
+    void ServiceL( const RMessage2& aMessage );
+    
+    /**
+     * Handles the request from client. 
+     * @param aMessage, a message from client.
+     */
+    void DispatchMessageL( const RMessage2& aMessage );
+    
+    /**
+     * Adds session to server's counter. 
+     */
+    void CreateL(); 
+
+private:
+    /**
+     * Sets tacticons enabled/disabled.
+     */    
+    void EnableTacticonsL( const RMessage2& aMessage );
+        
+    /**
+     * Returns boolean value whether tacticons are enabled or disabled.
+     */           
+    void TacticonsEnabledL( const RMessage2& aMessage );
+
+private:
+
+    /**
+    * C++ destructor.
+    */
+    virtual ~CTacticonSession(); 
+
+    /*
+    * Reference to Tacticon Server. Ownership is not transferred.
+    */
+    CTacticonServer& Server();      
+
+    };
+
+#endif // C_TACTICONSESSION_H
+