Update contrib.
1 // Copyright (c) 2010 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.
14 // Provide an alternative to the apgrfx to avoid a dependency on middleware
19 @internalComponent - Internal Symbian test code
22 #ifndef __APGRFXFACADE_H__
23 #define __APGRFXFACADE_H__
28 class TApaTaskFacade : public CBase
31 TApaTaskFacade(RWsSession& aSession);
32 TApaTaskFacade(const TApaTaskFacade& aTaskFacade);
34 void BringToForeground();
35 void SetWgId(TInt aWgId);
41 class TApaTaskListFacade : public CBase
44 TApaTaskListFacade(RWsSession& aSession);
45 ~TApaTaskListFacade();
46 TApaTaskFacade FindByPos(TInt aPos);
48 void FindByPosL(TApaTaskFacade& aTask,TInt aPos);
53 #endif // __APGRFXFACADE_H__