Update contrib.
1 // Copyright (c) 1995-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.
16 #include "graphics/W32STDGRAPHICTEST.H"
18 EXPORT_C TWsGraphicFrameRate::TWsGraphicFrameRate():
19 TWsGraphicMsgFixedBase(TUid::Uid(ETypeId),sizeof(*this))
23 LOCAL_C const TUid KUidWsGraphicTestFrameRate = {0x10281AB2};
25 EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL()
27 CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate;
28 CleanupStack::PushL(self);
29 self->BaseConstructL(KUidWsGraphicTestFrameRate,KNullDesC8());
30 CleanupStack::Pop(self);
34 EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL(TUid aUid)
36 CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate;
37 CleanupStack::PushL(self);
38 self->BaseConstructL(aUid,KUidWsGraphicTestFrameRate,KNullDesC8());
39 CleanupStack::Pop(self);
43 EXPORT_C CWsGraphicTestFrameRate* CWsGraphicTestFrameRate::NewL(const TWsGraphicId& aReplace)
45 CWsGraphicTestFrameRate* self = new(ELeave) CWsGraphicTestFrameRate;
46 CleanupStack::PushL(self);
47 self->BaseConstructL(aReplace,KUidWsGraphicTestFrameRate,KNullDesC8());
48 CleanupStack::Pop(self);
52 EXPORT_C CWsGraphicTestFrameRate::~CWsGraphicTestFrameRate()
56 CWsGraphicTestFrameRate::CWsGraphicTestFrameRate()
60 void CWsGraphicTestFrameRate::HandleMessage(const TDesC8& /*aData*/)
64 void CWsGraphicTestFrameRate::OnReplace()