videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/inc/videoserviceview.h
changeset 44 518105d52e45
parent 36 8aed59de29f9
equal deleted inserted replaced
42:17f382c040b1 44:518105d52e45
    13 *
    13 *
    14 * Description:  Declaration of VideoServiceView
    14 * Description:  Declaration of VideoServiceView
    15 *
    15 *
    16 */
    16 */
    17 
    17 
    18 // Version : %version: 1 %
    18 // Version : %version: 2 %
    19 
    19 
    20 #ifndef VIDEOSERVICEVIEW_H
    20 #ifndef VIDEOSERVICEVIEW_H
    21 #define VIDEOSERVICEVIEW_H
    21 #define VIDEOSERVICEVIEW_H
    22 
    22 
    23 #include <QObject>
    23 #include <QObject>
    26 
    26 
    27 // FORWARD DECLARATIONS
    27 // FORWARD DECLARATIONS
    28 class VideoServices;
    28 class VideoServices;
    29 
    29 
    30 class VideoServiceView : public QObject
    30 class VideoServiceView : public QObject
    31     {
    31 {
    32 
    32 
    33     Q_OBJECT
    33     Q_OBJECT
    34 
    34 
    35     public:
    35     public:
    36         VideoServiceView( VideoServices* parent, QVideoPlayerEngine* engine );
    36         VideoServiceView( VideoServices* parent, VideoPlayerEngine* engine );
    37         virtual ~VideoServiceView();
    37         virtual ~VideoServiceView();
    38 
    38 
    39     public slots:
    39     public slots:
    40         void view( QString filePath );
    40         void view( QString filePath );
    41 
    41 
    42     private:
    42     private:
    43         QVideoPlayerEngine* mEngine;
    43         VideoPlayerEngine*   mEngine;
    44         VideoServices* mServiceApp;
    44         VideoServices*       mServiceApp;
    45     };
    45 };
    46 
    46 
    47     #endif
    47 #endif