usbmgmt/usbmgrtest/t_charging_arm/src/activetest.cpp
changeset 0 c9bc50fca66e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/usbmgmt/usbmgrtest/t_charging_arm/src/activetest.cpp	Tue Feb 02 02:02:59 2010 +0200
@@ -0,0 +1,55 @@
+/*
+* Copyright (c) 2006-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:
+*
+*/
+
+#include <e32base.h>
+#include <e32cons.h>
+#include <e32test.h>
+#include <e32twin.h>
+#include "activeconsole.h"
+
+LOCAL_C void ActiveTestL()
+    {
+	CConsoleBase* console = Console::NewL(_L("ACTIVETEST"), TSize(KConsFullScreen, KConsFullScreen));
+	CleanupStack::PushL(console);
+
+	CActiveScheduler* scheduler = new(ELeave) CActiveScheduler;
+	CleanupStack::PushL(scheduler);
+	CActiveScheduler::Install(scheduler);
+
+	CActiveConsole* activeConsole = CActiveConsole::NewLC(*console);
+	activeConsole->RequestCharacter();
+	CActiveScheduler::Start();
+	// NB CActiveScheduler::Start only returns when someone somewhere has 
+	// called CActiveScheduler::Stop.
+
+	CleanupStack::PopAndDestroy(2); // activeConsole, scheduler
+
+	console->Printf(_L("\nPress any key"));
+	console->Getch(); // get and ignore character
+	CleanupStack::PopAndDestroy(); // console
+	}
+
+GLDEF_C TInt E32Main()
+    {
+	__UHEAP_MARK;
+	CTrapCleanup* cleanup = CTrapCleanup::New();
+	TRAPD(error, ActiveTestL());
+	__ASSERT_ALWAYS(!error, User::Panic(_L("E32Main"), error));
+	delete cleanup;
+	__UHEAP_MARKEND;
+	return KErrNone;
+    }