sysstatemgmt/systemstatemgr/test/testapps/inc/ssmtestappsucessfulafterretry.h
changeset 0 4e1aa6a622a0
equal deleted inserted replaced
-1:000000000000 0:4e1aa6a622a0
       
     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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @test
       
    19  @internalComponent - Internal Symbian test code
       
    20 */
       
    21 
       
    22 #ifndef __SSMTESTAPPSUCESSFULAFTERRETRY_H
       
    23 #define __SSMTESTAPPSUCESSFULAFTERRETRY_H
       
    24 
       
    25 #include <s32file.h>
       
    26 #include <f32file.h>
       
    27 
       
    28 _LIT(KFileForFAndF, "c:\\countforfnf.dat");	// this file should be deleted by the test application
       
    29 
       
    30 /**
       
    31 Application class
       
    32 */
       
    33 #include <eikapp.h>
       
    34 
       
    35 class CTestFAndFApplication : public CEikApplication
       
    36 	{
       
    37 public:
       
    38 	static CApaApplication* NewApplication();
       
    39 	~CTestFAndFApplication();
       
    40 	
       
    41 private:
       
    42 CTestFAndFApplication();
       
    43 	
       
    44 	// from CApaApplication
       
    45 	TUid AppDllUid() const;
       
    46 	CApaDocument* CreateDocumentL();
       
    47 	};
       
    48 
       
    49 /**
       
    50 Document class
       
    51 */
       
    52 #include <eikdoc.h>
       
    53 
       
    54 class CEikAppUi;
       
    55 class CEikApplication;
       
    56 class CTestFAndFDocument : public CEikDocument
       
    57 	{
       
    58 public:
       
    59 	static CTestFAndFDocument* NewL(CEikApplication& aApp);
       
    60 	~CTestFAndFDocument();
       
    61 	
       
    62 private:
       
    63 	CTestFAndFDocument(CEikApplication& aApp);
       
    64 	
       
    65 	// from CEikDocument
       
    66 	CEikAppUi* CreateAppUiL();
       
    67 	};
       
    68 
       
    69 /**
       
    70 Application UI class, root of all graphical user interface in this application
       
    71 */
       
    72 #include <eikappui.h>
       
    73 
       
    74 class CTestAppAo;
       
    75 class CTestFAndFAppUi : public CEikAppUi
       
    76     {
       
    77 public:
       
    78 	CTestFAndFAppUi();
       
    79 	~CTestFAndFAppUi();
       
    80 	
       
    81 	// from CEikAppUi
       
    82 	void ConstructL();
       
    83 	};
       
    84 
       
    85 #endif // __SSMTESTAPPSUCESSFILAFTERRETRY_H