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