diff -r 000000000000 -r d54f32e146dd hapticsservices_plat/tactile_feedback_server_api/tsrc/inc/testtactilefeedbackserver.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/hapticsservices_plat/tactile_feedback_server_api/tsrc/inc/testtactilefeedbackserver.h Thu Dec 17 08:53:38 2009 +0200 @@ -0,0 +1,50 @@ +/* +* Copyright (c) 2002 - 2007 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: Test tactilefeedbackserver.h +* +*/ + +#ifndef C_TESTTACTILEFEEDBACKSERVER_H +#define C_TESTTACTILEFEEDBACKSERVER_H + +//INCLUDE +#include +#include + +/* + * This class inherit from MTactileFeedbackServer for testing function + */ +class CTestMTactileFeedbackServer:public CBase, public MTactileFeedbackServer + { +public: + /* + * Constructor + */ + CTestMTactileFeedbackServer(); + + /* + * Destructor + */ + ~CTestMTactileFeedbackServer(); + + /* + * This function is a implement of pure implement function + */ + void InstantFeedback( TTouchLogicalFeedback aType ); + }; + +#endif /*C_TESTTACTILEFEEDBACKSERVER_H*/ + +//Endfile +