devicediagnostics/devdiagapp/inc/devdiagappappui.h
changeset 18 7d11f9a6646f
parent 4 75a71fdb4c92
child 21 c707676bf59f
--- a/devicediagnostics/devdiagapp/inc/devdiagappappui.h	Tue Feb 02 00:03:17 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,72 +0,0 @@
-/*
-* Copyright (c) 2007 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:  Application view UI class.
-*
-*/
-
-
-
-#ifndef DEVDIAGAPP_APPUI_H
-#define DEVDIAGAPP_APPUI_H
-
-#include <aknViewAppUi.h> 
-
-// Forward reference
-class CDevDiagSuiteView;
-
-/** 
-* An instance of class CDevDiagAppAppUi is the UserInterface part of the AVKON
-* application framework for the DevDiagApp application
-* @since 5.0
-**/
-class CDevDiagAppAppUi : public CAknViewAppUi
-    {
-public:
-
-    /**  
-    * Perform the second phase construction of a CDevDiagAppAppUi object
-    * this needs to be public due to the way the framework constructs the AppUi 
-    **/
-    void ConstructL();
-
-    /**
-    * Perform the first phase of two phase construction.
-    * This needs to be public due to the way the framework constructs the AppUi 
-    **/
-    CDevDiagAppAppUi();
-
-
-    /**
-    * Destroy the object and release all memory objects.
-    **/
-    ~CDevDiagAppAppUi();
-
-public: // from CAknAppUi
-
-    /**
-    * Handle user menu selections.
-    *
-    * @param aCommand the enumerated code for the option selected.
-    **/
-    void HandleCommandL(TInt aCommand);
-
-private:
-
-    // The application view. Own
-    CDevDiagSuiteView* iSuiteView;
-    };
-
-
-#endif // DEVDIAGAPP_APPUI_H
-