diff -r 000000000000 -r 4e1aa6a622a0 sysstatemgmt/systemstatemgr/test/testapps/inc/ssmtestappsucessfulafterretry.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/sysstatemgmt/systemstatemgr/test/testapps/inc/ssmtestappsucessfulafterretry.h Tue Feb 02 00:53:00 2010 +0200 @@ -0,0 +1,85 @@ +// Copyright (c) 2007-2009 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: +// + +/** + @file + @test + @internalComponent - Internal Symbian test code +*/ + +#ifndef __SSMTESTAPPSUCESSFULAFTERRETRY_H +#define __SSMTESTAPPSUCESSFULAFTERRETRY_H + +#include +#include + +_LIT(KFileForFAndF, "c:\\countforfnf.dat"); // this file should be deleted by the test application + +/** +Application class +*/ +#include + +class CTestFAndFApplication : public CEikApplication + { +public: + static CApaApplication* NewApplication(); + ~CTestFAndFApplication(); + +private: +CTestFAndFApplication(); + + // from CApaApplication + TUid AppDllUid() const; + CApaDocument* CreateDocumentL(); + }; + +/** +Document class +*/ +#include + +class CEikAppUi; +class CEikApplication; +class CTestFAndFDocument : public CEikDocument + { +public: + static CTestFAndFDocument* NewL(CEikApplication& aApp); + ~CTestFAndFDocument(); + +private: + CTestFAndFDocument(CEikApplication& aApp); + + // from CEikDocument + CEikAppUi* CreateAppUiL(); + }; + +/** +Application UI class, root of all graphical user interface in this application +*/ +#include + +class CTestAppAo; +class CTestFAndFAppUi : public CEikAppUi + { +public: + CTestFAndFAppUi(); + ~CTestFAndFAppUi(); + + // from CEikAppUi + void ConstructL(); + }; + +#endif // __SSMTESTAPPSUCESSFILAFTERRETRY_H