videoplayerapp/videoplayerengine/tsrc/testvideoservices/stub/inc/videoplayerengine.h
changeset 44 518105d52e45
parent 36 8aed59de29f9
child 50 21fe8338c6bf
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
     9 * Initial Contributors:
     9 * Initial Contributors:
    10 * Nokia Corporation - initial contribution.
    10 * Nokia Corporation - initial contribution.
    11 *
    11 *
    12 * Contributors:
    12 * Contributors:
    13 *
    13 *
    14 * Description:  Implementation of QVideoPlayerEngine
    14 * Description:  Implementation of VideoPlayerEngine
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 // Version : %version: da1mmcf#2 %
    18 // Version : %version: da1mmcf#3 %
    19 
    19 
    20 #ifndef VIDEOPLAYERENGINE_H
    20 #ifndef VIDEOPLAYERENGINE_H
    21 #define VIDEOPLAYERENGINE_H
    21 #define VIDEOPLAYERENGINE_H
    22 
    22 
    23 #include <qobject.h>
    23 #include <qobject.h>
    24 #include <f32file.h>
    24 #include <f32file.h>
    25 
    25 
    26 //FORWARD CLASS DECLARATION
    26 //FORWARD CLASS DECLARATION
    27 
    27 
    28 /**
    28 /**
    29  *  QVideoPlayerEngine
    29  *  VideoPlayerEngine
    30  *
    30  *
    31  */
    31  */
    32 class QVideoPlayerEngine: public QObject
    32 class VideoPlayerEngine: public QObject
    33 {
    33 {
    34     Q_OBJECT
    34     Q_OBJECT
    35 
    35 
    36     public:
    36     public:
       
    37 	
    37         /**
    38         /**
    38          * Constructor
    39          * Constructor
    39          */
    40          */
    40         QVideoPlayerEngine(bool isService = false);
    41         VideoPlayerEngine( bool isService = false );
    41 
    42 
    42         /**
    43         /**
    43         * Destructor.
    44         * Destructor.
    44         */
    45         */
    45         virtual ~QVideoPlayerEngine();
    46         virtual ~VideoPlayerEngine();
    46 
    47 
    47     public:
       
    48         void initialize();
    48         void initialize();
    49         void playMedia( QString filePath );
    49         void playMedia( QString filePath );
    50         void playMedia( RFile file );
    50         void playMedia( RFile file );
    51         void setEmbedded();
    51         void setEmbedded();
    52 
    52