taskswitcher/taskswitcherui/taskswitcherapp/src/tsdocument.cpp
branchv5backport
changeset 14 1abc632eb502
parent 13 6205fd287e8a
child 20 636d517f67e6
--- a/taskswitcher/taskswitcherui/taskswitcherapp/src/tsdocument.cpp	Thu Mar 18 14:45:17 2010 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,105 +0,0 @@
-/*
-* Copyright (c) 2008 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:  Document class
- *
-*/
-
-
-#include <apgwgnam.h>
-
-#include "tsappui.h"
-#include "tsdocument.h"
-
-// -----------------------------------------------------------------------------
-// CTsDocument::NewLC( )
-// Create a CTsDocument object and return a pointer to it
-// -----------------------------------------------------------------------------
-//
-CTsDocument* CTsDocument::NewL( CEikApplication& aApp )
-    {
-    CTsDocument* self = NewLC ( aApp );
-    CleanupStack::Pop ( self );
-    return self;
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::NewLC( )
-// Create a CTsDocument object and return a pointer to it
-// -----------------------------------------------------------------------------
-//
-CTsDocument* CTsDocument::NewLC( CEikApplication& aApp )
-    {
-    CTsDocument* self = new ( ELeave ) CTsDocument( aApp );
-    CleanupStack::PushL ( self );
-    self->ConstructL ( );
-    return self;
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::ConstructL( )
-// Second phase constructor
-// -----------------------------------------------------------------------------
-//
-void CTsDocument::ConstructL( )
-    {
-    // no implementation required
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::~CTsDocument( )
-// First phase constructor
-// -----------------------------------------------------------------------------
-//
-CTsDocument::CTsDocument( CEikApplication& aApp ) :
-    CAknDocument( aApp )
-    {
-    // no implementation required
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::~CTsDocument( )
-// Destructor
-// -----------------------------------------------------------------------------
-//
-CTsDocument::~CTsDocument( )
-    {
-    // no implementation required
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::CreateAppUiL( )
-// Create a CTsAppUi object and return a pointer to it
-// -----------------------------------------------------------------------------
-//
-CEikAppUi* CTsDocument::CreateAppUiL( )
-    {
-    // Create the application user interface, and return a pointer to it,
-    // the framework takes ownership of this object
-    CEikAppUi* appUi = new ( ELeave ) CTsAppUi;
-    return appUi;
-    }
-
-// -----------------------------------------------------------------------------
-// CTsDocument::UpdateTaskNameL( )
-// Makes app hidden in fastswap window
-// -----------------------------------------------------------------------------
-//
-void CTsDocument::UpdateTaskNameL( CApaWindowGroupName* aWgName )
-    {
-    CEikDocument::UpdateTaskNameL ( aWgName );
-    aWgName->SetHidden ( ETrue );
-    }
-
-
-// End of file