diff -r b9e36322dee2 -r e9457ebcc4df services/terminalmodeservice/tsrc/upnptmservertest/inc/testtimer.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/services/terminalmodeservice/tsrc/upnptmservertest/inc/testtimer.h Fri Jul 23 08:57:49 2010 +0300 @@ -0,0 +1,45 @@ +/** +* 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: CTestTimer class declaration +* +*/ + +#ifndef TESTTIMER_H_ +#define TESTTIMER_H_ + +#include +#include + +class CTmServerTest; + +class CTestTimer:public CActive + { +public: + static CTestTimer* NewL(CTmServerTest& aTmServerTest); + ~CTestTimer(); + void After(const TInt aDuration); + +private: + CTestTimer(CTmServerTest& aTmServerTest); + +private: // From CActive + void RunL(); + void DoCancel(); + +private: + RTimer iTimer; + CTmServerTest& iTmServerTest; + }; + +#endif //TESTTIMER_H_