mpxplugins/viewplugins/plugins/podcastplaybackviewplugin/inc/mpxpodcastplaybackviewplugin.h
changeset 0 ff3acec5bc43
equal deleted inserted replaced
-1:000000000000 0:ff3acec5bc43
       
     1 /*
       
     2 * Copyright (c) 2006 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 Podcast Playback view plugin definition.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef C_CMPXPODCASTPLAYBACKVIEWPLUGIN_H
       
    21 #define C_CMPXPODCASTPLAYBACKVIEWPLUGIN_H
       
    22 
       
    23 
       
    24 // INCLUDES
       
    25 #include <mpxaknviewplugin.h>
       
    26 
       
    27 
       
    28 // CLASS DECLARATION
       
    29 
       
    30 /**
       
    31  *  MPX Podcast Playback view plugin definition.
       
    32  *
       
    33  *  @lib mpxpodcastplaybackviewplugin.lib
       
    34  *  @since S60 v3.0
       
    35  */
       
    36 NONSHARABLE_CLASS( CMPXPodcastPlaybackViewPlugin ) : public CMPXAknViewPlugin
       
    37     {
       
    38 public:
       
    39 
       
    40     /**
       
    41      * Two-phased constructor.
       
    42      *
       
    43      * @since 3.0
       
    44      * @return Pointer to newly created object.
       
    45      */
       
    46     static CMPXPodcastPlaybackViewPlugin* NewL();
       
    47 
       
    48     /**
       
    49      * Destructor.
       
    50      */
       
    51     virtual ~CMPXPodcastPlaybackViewPlugin();
       
    52 
       
    53 private:
       
    54 
       
    55     /**
       
    56      * From CMPXAknViewPlugin
       
    57      * Construct Avkon view.
       
    58      *
       
    59      * @since S60 v3.0
       
    60      * @return Pointer to a newly created Avkon view.
       
    61      */
       
    62     CAknView* ConstructViewLC();
       
    63 
       
    64 private:
       
    65 
       
    66     /**
       
    67      * C++ default constructor.
       
    68      */
       
    69     CMPXPodcastPlaybackViewPlugin();
       
    70 
       
    71     /**
       
    72      * By default Symbian 2nd phase constructor is private.
       
    73      */
       
    74     void ConstructL();
       
    75     };
       
    76 
       
    77 #endif  // C_CMPXPODCASTPLAYBACKVIEWPLUGIN_H
       
    78 
       
    79 // End of File