filemanager/App/src/CFileManagerApplication.cpp
branchRCL_3
changeset 38 491b3ed49290
parent 36 95243422089a
child 39 65326cf895ed
--- a/filemanager/App/src/CFileManagerApplication.cpp	Thu Aug 19 09:42:45 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,93 +0,0 @@
-/*
-* Copyright (c) 2002-2006 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 Manager application class.
-*
-*/
-
-
-
-// INCLUDE FILES
-#include <eikstart.h>
-#include "CFileManagerApplication.h"
-#include "CFileManagerDocument.h"
-#include "FileManagerUID.h"
-
-// ============================ MEMBER FUNCTIONS ===============================
-
-// -----------------------------------------------------------------------------
-// CFileManagerApplication::CFileManagerApplication
-// C++ default constructor can NOT contain any code, that
-// might leave.
-// -----------------------------------------------------------------------------
-//
-CFileManagerApplication::CFileManagerApplication()
-    {
-    }
-    
-// -----------------------------------------------------------------------------
-// CFileManagerApplication::~CFileManagerApplication
-// Destructor
-// -----------------------------------------------------------------------------
-// 
-CFileManagerApplication::~CFileManagerApplication()
-    {
-    }
-
-// -----------------------------------------------------------------------------
-// CFileManagerApplication::CreateDocumentL
-// 
-// -----------------------------------------------------------------------------
-// 
-CApaDocument* CFileManagerApplication::CreateDocumentL()
-	{
-	return CFileManagerDocument::NewL( *this );
-	}
-
-// -----------------------------------------------------------------------------
-// CFileManagerApplication::AppDllUid
-// 
-// -----------------------------------------------------------------------------
-// 
-TUid CFileManagerApplication::AppDllUid() const
-	{
-	return TUid::Uid( KFileManagerUID3 );
-	}
-
-// ========================== OTHER EXPORTED FUNCTIONS =========================
-
-// -----------------------------------------------------------------------------
-// NewApplication
-// Creates a new FileManager application object (CFileManagerApplication). 
-// Called by the application framework.
-// Returns the new application object (CFileManagerApplication). 
-// NULL if out of memory.
-// -----------------------------------------------------------------------------
-// 
-EXPORT_C CApaApplication* NewApplication()
-    {
-	return new CFileManagerApplication;
-    }
-
-// -----------------------------------------------------------------------------
-// E32Main
-// Standard entry point for the application exe (FileManager.exe).
-// Returns standard Symbian OS error code, KErrNone if succesful.
-// -----------------------------------------------------------------------------
-//
-GLDEF_C TInt E32Main()
-    {
-    return EikStart::RunApplication( NewApplication );
-    }
-
-//  End of File