sl@0: // Copyright (c) 1995-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include "graphics/W32STDGRAPHICTEST.H" sl@0: sl@0: EXPORT_C TWsGraphicFrameRate::TWsGraphicFrameRate(): sl@0: TWsGraphicMsgFixedBase(TUid::Uid(ETypeId),sizeof(*this)) sl@0: { sl@0: } sl@0: sl@0: LOCAL_C const TUid KUidWsGraphicTestFrameRate = {0x10281AB2}; sl@0: sl@0: EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL() sl@0: { sl@0: CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(KUidWsGraphicTestFrameRate,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL(TUid aUid) sl@0: { sl@0: CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aUid,KUidWsGraphicTestFrameRate,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL(const TWsGraphicId& aReplace) sl@0: { sl@0: CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate; sl@0: CleanupStack::PushL(self); sl@0: self->BaseConstructL(aReplace,KUidWsGraphicTestFrameRate,KNullDesC8()); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: EXPORT_C CWsGraphicTestFrameRate::~CWsGraphicTestFrameRate() sl@0: { sl@0: } sl@0: sl@0: CWsGraphicTestFrameRate::CWsGraphicTestFrameRate() sl@0: { sl@0: } sl@0: sl@0: void CWsGraphicTestFrameRate::HandleMessage(const TDesC8& /*aData*/) sl@0: { sl@0: } sl@0: sl@0: void CWsGraphicTestFrameRate::OnReplace() sl@0: { sl@0: }