sysstatemgmt/systemstatemgr/test/tcmn/inc/tcmn_transitionmonitor_server.h
changeset 76 cb32bcc88bad
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sysstatemgmt/systemstatemgr/test/tcmn/inc/tcmn_transitionmonitor_server.h	Fri Oct 08 14:33:25 2010 +0300
@@ -0,0 +1,50 @@
+// Copyright (c) 2010 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: Server for handling graceful notification incase of state change
+//
+
+/**
+ @file
+ @test
+ @internalComponent - Internal Symbian test code 
+*/
+ 
+
+#ifndef __TCMN_TRANSITIONMONITOR_SERVER_H__
+#define __TCMN_TRANSITIONMONITOR_SERVER_H__
+
+#include <test/testblockcontroller.h>
+#include <test/testserver2.h>
+#include <test/testexecuteserverbase.h>
+
+class CAwareSessionTestBlock : public CTestBlockController
+	{
+public:
+    CAwareSessionTestBlock() : CTestBlockController() {}
+	~CAwareSessionTestBlock() {}
+
+	CDataWrapper* CreateDataL(const TDesC& aData);
+	};
+
+	
+class CAwareSessionTestServer : public CTestServer2
+	{
+public:
+	CAwareSessionTestServer() {}
+	~CAwareSessionTestServer() {}
+
+	static CAwareSessionTestServer* NewL();
+	CTestBlockController*	CreateTestBlock();	
+	};
+
+#endif //__TCMN_TRANSITIONMONITOR_SERVER_H__