videoplayerapp/mpxvideoplayer/tsrc/ut_mpxvideoplayertest/src/mpxvideoplayeriadupdate_stub.cpp
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Wed, 15 Sep 2010 12:15:24 +0300
branchRCL_3
changeset 64 3eb824b18d67
permissions -rw-r--r--
Revision: 201035 Kit: 201036

/*
* Copyright (c) 2004-2010 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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:    IAD update handling.
*
*/


// Version : %version: 1 %

#include <mpxviewutility.h>

#include "mpxvideoplayeriadupdate_stub.h"


// --------------------------------------------------------------------------
// Two-phased constructor.
// --------------------------------------------------------------------------
//
CMpxVideoPlayerIadUpdate* CMpxVideoPlayerIadUpdate::NewL( MMPXViewUtility& aViewUtility )
    {
    CMpxVideoPlayerIadUpdate* self = new( ELeave ) CMpxVideoPlayerIadUpdate( aViewUtility );
    CleanupStack::PushL( self );
    self->ConstructL();
    CleanupStack::Pop( self );
    return self;
    }

// --------------------------------------------------------------------------
// C++ default constructor can NOT contain any code, that might leave.
// --------------------------------------------------------------------------
//
CMpxVideoPlayerIadUpdate::CMpxVideoPlayerIadUpdate( MMPXViewUtility& aViewUtility )
  : iViewUtility( aViewUtility )
    {
    // None
    }

// ---------------------------------------------------------------------------
// Symbian 2nd phase constructor can leave.
// ---------------------------------------------------------------------------
//
void CMpxVideoPlayerIadUpdate::ConstructL()
    {
    }

// --------------------------------------------------------------------------
// Destructor
// --------------------------------------------------------------------------
//
CMpxVideoPlayerIadUpdate::~CMpxVideoPlayerIadUpdate()
    {
    }

// --------------------------------------------------------------------------
// Starts update process.
// --------------------------------------------------------------------------
//
void CMpxVideoPlayerIadUpdate::StartL()
    {
    }