Update contrib.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
22 #include <e32debug.h> //RDebug
24 #include "t_pseudoappanim.h"
25 #include "t_pseudoappeng.h"
27 EXPORT_C CTestAnimation::CTestAnimation() : iRotationSupported(EFalse)
31 EXPORT_C void CTestAnimation::DrawL(CTestSurfaceRasterizer* /* aSurfaceRasterizer */, SurfaceDetails& /* aSurfDetails */)
35 //If rotation is supported by a derived class, this function will need to be overridden
36 EXPORT_C void CTestAnimation::SetFrameNumber(TInt /* aFrameNumber */)
38 RDebug::Print(_L("Rotation is not supported for this animation type"));
39 User::Panic(KTPseudoAppPanicTxt, KErrNotSupported);
42 EXPORT_C TBool CTestAnimation::RotationSupported()
44 return iRotationSupported;
47 CTestAnimation::~CTestAnimation()