videofeeds/hgvodplugin/src/vcxhgvodplugin.cpp
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of the License "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:    HG VOD UI plugin implementation*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 // INCLUDE FILES
       
    20 #include "vcxhgvodmainview.h"
       
    21 #include "vcxhgvodplugin.h"
       
    22 #include <mpxviewutility.h>
       
    23 
       
    24 // ======== MEMBER FUNCTIONS ========
       
    25 
       
    26 // ---------------------------------------------------------------------------
       
    27 // C++ default constructor
       
    28 // ---------------------------------------------------------------------------
       
    29 //
       
    30 CVcxHgVodPlugin::CVcxHgVodPlugin()
       
    31     {
       
    32     // No impl
       
    33     }
       
    34 
       
    35 // ---------------------------------------------------------------------------
       
    36 // Symbian 2nd phase constructor
       
    37 // ---------------------------------------------------------------------------
       
    38 //
       
    39 void CVcxHgVodPlugin::ConstructL()
       
    40     {
       
    41     // No impl
       
    42     }
       
    43 
       
    44 // ---------------------------------------------------------------------------
       
    45 // Two-phased constructor.
       
    46 // ---------------------------------------------------------------------------
       
    47 //
       
    48 CVcxHgVodPlugin* CVcxHgVodPlugin::NewL( )
       
    49     {
       
    50     CVcxHgVodPlugin* self = 
       
    51         new ( ELeave ) CVcxHgVodPlugin();
       
    52     CleanupStack::PushL( self );
       
    53     self->ConstructL();
       
    54     CleanupStack::Pop( self );
       
    55     return self;
       
    56     }
       
    57 
       
    58 // ---------------------------------------------------------------------------
       
    59 // Destructor
       
    60 // ---------------------------------------------------------------------------
       
    61 //
       
    62 CVcxHgVodPlugin::~CVcxHgVodPlugin()
       
    63     {
       
    64     // No impl
       
    65     }
       
    66 
       
    67 // ---------------------------------------------------------------------------
       
    68 // From CMPXAknViewPlugin
       
    69 // Construct Avkon view.
       
    70 // ---------------------------------------------------------------------------
       
    71 //
       
    72 CAknView* CVcxHgVodPlugin::ConstructViewLC()
       
    73     {
       
    74     return CVcxHgVodMainView::NewLC();
       
    75     }