videoplayback/videopdlplaybackviewplugin/inc/mpxvideopdlplaybackviewplugin.h
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 "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:  MPX Video playback view plugin definition.
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version: 3 %
       
    19 
       
    20 
       
    21 
       
    22 // This file defines the API for mpxvideopdlplaybackviewplugin.dll
       
    23 
       
    24 #ifndef __VIDEOPDLPLAYBACKVIEWPLUGIN_H__
       
    25 #define __VIDEOPDLPLAYBACKVIEWPLUGIN_H__
       
    26 
       
    27 //  Include Files
       
    28 
       
    29 #include <e32base.h>
       
    30 #include <e32std.h>
       
    31 
       
    32 #include <mpxaknviewplugin.h>
       
    33 
       
    34 //  Constants
       
    35 
       
    36 
       
    37 //  Class Definitions
       
    38 
       
    39 NONSHARABLE_CLASS( CMPXVideoPdlPlaybackViewPlugin ) : public CMPXAknViewPlugin
       
    40 {
       
    41 public:
       
    42 	static CMPXVideoPdlPlaybackViewPlugin* NewL();
       
    43 	static CMPXVideoPdlPlaybackViewPlugin* NewLC();
       
    44 	~CMPXVideoPdlPlaybackViewPlugin();
       
    45 
       
    46 public:
       
    47     /*
       
    48      * From CMPXAknViewPlugin
       
    49      * Construct Avkon view.
       
    50      *
       
    51      * @since S60 v3.0
       
    52      * @return Pointer to a newly created Avkon view.
       
    53      */
       
    54     CAknView* ConstructViewLC();
       
    55 
       
    56 private: 
       
    57 	CMPXVideoPdlPlaybackViewPlugin();
       
    58 	void ConstructL();
       
    59 };
       
    60 
       
    61 #endif  // __VIDEOPDLPLAYBACKVIEWPLUGIN_H__
       
    62 
       
    63 // End of File