tracefw/tracecompiler/test/multipleMmpTestCases/mmp_traces/src/MultipleMmpApp2.cpp
changeset 56 aa2539c91954
parent 54 a151135b0cf9
child 60 e54443a6878c
child 62 1c2bb2fc7c87
--- a/tracefw/tracecompiler/test/multipleMmpTestCases/mmp_traces/src/MultipleMmpApp2.cpp	Wed Sep 29 17:45:35 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,94 +0,0 @@
-/*
-* Copyright (c) 2010 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: 
-*
-*/
-
-
-//  Include Files  
-
-#include "MultipleMmpApp.h"
-#include <e32base.h>
-#include <e32std.h>
-#include <e32cons.h>			// Console
-#include "OstTraceDefinitions.h"
-#ifdef OST_TRACE_COMPILER_IN_USE
-#include "MultipleMmpApp2Traces.h"
-#endif
-
-//  Constants
-
-_LIT(KTextConsoleTitle, "Console");
-_LIT(KTextFailed, " failed, leave code = %d");
-_LIT(KTextPressAnyKey, " [press any key]\n");
-
-//  Global Variables
-
-LOCAL_D CConsoleBase* console; // write all messages to this
-
-
-//  Local Functions
-
-LOCAL_C void MainL()
-    {
-    /****************************TRACE STATEMENTS*********************************/
-    OstTrace0( TRACE_FLOW, TEST1_MAINL, "MainL()" );
-    OstTrace0( TRACE_FLOW, TEST2_MAINL, "MainL()" );    
-    /*****************************************************************************/
-    
-    CallSomeMoreTraceStatements();
-    
-    console->Write(_L("Hello, world!\n"));
-    }
-
-LOCAL_C void DoStartL()
-    {
-    // Create active scheduler (to run active objects)
-    CActiveScheduler* scheduler = new (ELeave) CActiveScheduler();
-    CleanupStack::PushL(scheduler);
-    CActiveScheduler::Install(scheduler);
-
-    MainL();
-
-    // Delete active scheduler
-    CleanupStack::PopAndDestroy(scheduler);
-    }
-
-//  Global Functions
-
-GLDEF_C TInt E32Main()
-    {
-    // Create cleanup stack
-    __UHEAP_MARK;
-    CTrapCleanup* cleanup = CTrapCleanup::New();
-
-    // Create output console
-    TRAPD(createError, console = Console::NewL(KTextConsoleTitle, TSize(
-            KConsFullScreen, KConsFullScreen)));
-    if (createError)
-        return createError;
-
-    // Run application code inside TRAP harness, wait keypress when terminated
-    TRAPD(mainError, DoStartL());
-    if (mainError)
-        console->Printf(KTextFailed, mainError);
-    console->Printf(KTextPressAnyKey);
-    console->Getch();
-
-    delete console;
-    delete cleanup;
-    __UHEAP_MARKEND;
-    return KErrNone;
-    }
-