--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/systemhealthmanagement/systemhealthmgr/test/testapprverror/testapprverror.h Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,78 @@
+// 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 __TESTAPPRVERROR_H__
+#define __TESTAPPRVERROR_H__
+
+/**
+Application class
+*/
+#include <eikapp.h>
+class CTestApplication : public CEikApplication
+ {
+public:
+ static CApaApplication* NewApplication();
+ ~CTestApplication();
+
+private:
+ CTestApplication();
+
+ // from CApaApplication
+ TUid AppDllUid() const;
+ CApaDocument* CreateDocumentL();
+ };
+
+/**
+Document class
+*/
+#include <eikdoc.h>
+class CEikAppUi;
+class CEikApplication;
+class CTestDocument : public CEikDocument
+ {
+public:
+ static CTestDocument* NewL(CEikApplication& aApp);
+ ~CTestDocument();
+
+private:
+ CTestDocument(CEikApplication& aApp);
+
+ // from CEikDocument
+ CEikAppUi* CreateAppUiL();
+ };
+
+/**
+Application UI class, root of all graphical user interface in this application
+*/
+#include <eikappui.h>
+class CTestAppUi : public CEikAppUi
+ {
+public:
+ CTestAppUi();
+ ~CTestAppUi();
+
+ // from CEikAppUi
+ void ConstructL();
+ // From CCoeAppUi
+ virtual TBool FrameworkCallsRendezvous() const;
+ };
+
+#endif // __TESTAPPRVERROR_H__