satui/satapp/SATUISrc/CSatUiApplication.cpp
branchRCL_3
changeset 19 7d48bed6ce0c
parent 18 594d59766373
child 20 987c9837762f
--- a/satui/satapp/SATUISrc/CSatUiApplication.cpp	Thu Aug 19 10:28:14 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,86 +0,0 @@
-/*
-* Copyright (c) 2002-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: 
-*    Defines CSatUiApplication class
-*
-*
-*/
-
-
-// INCLUDE FILES
-#include    "CSatUiDocument.h"
-#include    "CSatUiApplication.h"
-#include    <eikpanic.h>
-#include    <eikstart.h>
-#include    "tflogger.h"
-
-// ================= MEMBER FUNCTIONS =======================
-
-// ---------------------------------------------------------
-// CSatUiApplication::AppDllUid
-// Returns application UID.
-// (other items were commented in a header).
-// ---------------------------------------------------------
-//
-TUid CSatUiApplication::AppDllUid() const
-    {
-    TFLOGSTRING( "CSatUiApplication::AppDllUid() called" )
-    return KUidSATUI;
-    }
-
-// ---------------------------------------------------------
-// CSatUiApplication::CreateDocumentL
-// Creates the document object.
-// (other items were commented in a header).
-// ---------------------------------------------------------
-//
-CApaDocument* CSatUiApplication::CreateDocumentL()
-    {
-    TFLOGSTRING( "CSatUiApplication::CreateDocumentL() called" )
-    CSatUiDocument* document = new ( ELeave ) CSatUiDocument( *this );
-    CleanupStack::PushL( document );
-    document->ConstructL();
-    CleanupStack::Pop( document );
-    TFLOGSTRING( "CSatUiApplication::CreateDocumentL() exit" )
-    return( document );
-    }
-
-// ================= OTHER EXPORTED FUNCTIONS ==============
-
-LOCAL_C CApaApplication* NewApplication()
-    {
-    TFLOGSTRING( "NewApplication() called" )
-    return new CSatUiApplication;
-    }
-
-GLDEF_C TInt E32Main()
-    {
-    TFLOGSTRING( "E32Main() called" )
-    return EikStart::RunApplication(NewApplication);
-    }
-
-//
-// ---------------------------------------------------------
-// Panic
-// The needed panic method.
-// Returns: void
-//
-GLREF_C void Panic(
-    TEikPanic aPanic)
-    {
-    _LIT(KPanicText,"satui.app");
-    User::Panic(KPanicText,aPanic);
-    }
-
-//  End of File