videoplayerapp/videoplayerengine/tsrc/testvideoappuiengine/stub/inc/mpxcollectionplaylist.h
changeset 36 8aed59de29f9
equal deleted inserted replaced
35:3738fe97f027 36:8aed59de29f9
       
     1 /*
       
     2 * Copyright (c) 2009 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 collection playlist class stub for unit testing
       
    15 *
       
    16 */
       
    17 
       
    18 // Version : %version:  1 %
       
    19 
       
    20 #ifndef MPXCOLLECTIONPLAYLIST_H_
       
    21 #define MPXCOLLECTIONPLAYLIST_H_
       
    22 
       
    23 #include <e32base.h>
       
    24 
       
    25 class CMPXCollectionPath;
       
    26 //class MMPXCollectionPlaylistObserver;
       
    27 
       
    28 class CMPXCollectionPlaylist : public CBase
       
    29 {
       
    30     public:
       
    31     		CMPXCollectionPlaylist();
       
    32     		~CMPXCollectionPlaylist();
       
    33 
       
    34         //CMPXCollectionPlaylist* NewL(const CMPXCollectionPath& aPath,
       
    35         //                             MMPXCollectionPlaylistObserver* aPlObs = NULL);
       
    36                                      
       
    37         static CMPXCollectionPlaylist* NewL(const CMPXCollectionPath& aPath);                                     
       
    38 
       
    39         void SetSingleItemPlaylist();
       
    40         
       
    41         void SetToFirst();
       
    42         
       
    43         void SetAutoPlay(TBool aAutoPlay);
       
    44         
       
    45         void SetPreInitPlugin(TBool aPreInit);
       
    46                                      
       
    47 };
       
    48 #endif /*MPXCOLLECTIONPLAYLIST_H_*/