diff -r cf5481c2bc0b -r 69946d1824c4 videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceplay.cpp --- a/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceplay.cpp Fri Apr 16 14:59:52 2010 +0300 +++ b/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceplay.cpp Mon May 03 12:32:50 2010 +0300 @@ -11,28 +11,36 @@ * * Contributors: * -* Description: Implementation of QVideoPlayerEngine +* Description: Implementation of VideoServicePlay * */ -// Version : %version: 1 % +// Version : %version: da1mmcf#2 % -#include +#include "videoservices.h" #include "videoserviceplay.h" #include "videoplayerengine.h" +#include "mpxvideo_debug.h" VideoServicePlay::VideoServicePlay( VideoServices* parent, QVideoPlayerEngine* engine ) { + MPX_DEBUG(_L("VideoServicePlay::VideoServicePlay()")); + + Q_UNUSED( engine ); mServiceApp = parent; } VideoServicePlay::~VideoServicePlay() { + MPX_DEBUG(_L("VideoServicePlay::~VideoServicePlay()")); } void VideoServicePlay::playMedia( QString filePath ) { - mServiceApp->setCurrentService(VideoServices::EPlayback); + MPX_DEBUG(_L("VideoServicePlay::playMedia()")); + + Q_UNUSED( filePath ); + mServiceApp->setCurrentService( VideoServices::EPlayback ); }