templates/com.nokia.carbide.cpp.templates/templates/projecttemplates/UIQ30-HelloWorld/Src/baseNameAppUi.cpp
changeset 1383 619a297ab336
parent 1382 4ddf9fb521b2
child 1384 10b788ab16fe
--- a/templates/com.nokia.carbide.cpp.templates/templates/projecttemplates/UIQ30-HelloWorld/Src/baseNameAppUi.cpp	Thu May 20 17:31:02 2010 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,28 +0,0 @@
-/*
-============================================================================
- Name		: C$(baseName)AppUi from $(baseName)AppUi.h
- Author	  : $(author)
- Version	 :
- Copyright   : $(copyright)
- Description : C$(baseName)AppUi implementation
-============================================================================
-*/
-
-#include "$(baseName)AppUi.h"
-#include "$(baseName)View.h"
-
-/**
-2nd stage construction of the App UI.
-Create view and add it to the framework.
-The framework will take over the ownership.
-*/
-void C$(baseName)AppUi::ConstructL()
-	{
-	// Calls ConstructL that initiate the standard values.
-	CQikAppUi::ConstructL();
-
-	// Create the view and add it to the framework
-	C$(baseName)View* appView = C$(baseName)View::NewLC(*this);
-	AddViewL(*appView);
-	CleanupStack::Pop(appView);
-	}