diff -r c16e04725da3 -r 5c4486441ae6 keepalive/flextimer/test/testflextimer/inc/inheritedcflextimer2.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/keepalive/flextimer/test/testflextimer/inc/inheritedcflextimer2.h Mon May 24 20:51:35 2010 +0300 @@ -0,0 +1,100 @@ +/* + * 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: CInheritedCFlexTimer inherits and implements CFlexTimer for testing purposes. + * + */ + +/* + * %version: 1 % + */ + +#ifndef CINHERITEDCFLEXTIMER2_H +#define CINHERITEDCFLEXTIMER2_H + +// INCLUDE FILES +#include "flextimer.h" + +// CLASS DECLARATION +/** + * desc + * + * @see CFlexTimer + * @see CPeriodic + * + */ +class CInheritedCFlexTimer2 : public CFlexTimer + { +public: + + /** + * A leaving constructor for the object. + * @param aPriority of the active object. If timing is critical, it + * should be higher than that of all other active objects owned by the + * scheduler. + * @return A pointer to a CInheritedCFlexTimer2 object on success. + * On error it leaves. + */ + static CInheritedCFlexTimer2* NewL( TInt aPriority, + TCallBack aCallBack, TInt aId ); + + /** + * Destructor for the object. + */ + virtual ~CInheritedCFlexTimer2(); + + /** + * desc + */ + void SetCB( TCallBack aCallBack ); + + /** + * desc + */ + TInt MyOwnConfigure( TTimeIntervalMicroSeconds32 aDelayWindow ); + +protected: + + /** + * Inherited from CActive. + */ + virtual void RunL(); + +private: + + /** + * Constructs the object. The second phase of the construction. + */ + void ConstructL(); + + /** + * Private constructor for the object. + * @param aPriority The priority of the active object. If timing is + * critical, it should be higher than that of all other active objects + * owned by the scheduler. + */ + CInheritedCFlexTimer2( TInt aPriority, TCallBack aCallBack, TInt aId ); + +private: + + /** + * The callback function which is called at the completion of + * flextimer server requests. + */ + TCallBack iCallBack; + + TInt iId; + + }; + +#endif /* CINHERITEDCFLEXTIMER2_H */