videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceurifetch.cpp
changeset 36 8aed59de29f9
parent 30 4f111d64a341
child 66 adb51f74b890
--- a/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceurifetch.cpp	Thu Apr 01 23:32:44 2010 +0300
+++ b/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/videoserviceurifetch.cpp	Fri Apr 16 18:13:14 2010 +0300
@@ -11,20 +11,24 @@
 *
 * Contributors:
 *
-* Description:   ?Description
+* Description:   Implementation of VideoServiceUriFetch Stub
 *
 */
 
-#include <videoservices.h>
-#include <videoserviceurifetch.h>
+// Version : %version: %
+
+#include "videoservices.h"
+#include "videoserviceurifetch.h"
+#include "mpxvideo_debug.h"
 
 
 // ----------------------------------------------------------------------------
 // VideoServiceUriFetch()
 // ----------------------------------------------------------------------------
 //
-VideoServiceUriFetch::VideoServiceUriFetch(VideoServices* parent)
+VideoServiceUriFetch::VideoServiceUriFetch( VideoServices* parent )
 {
+    MPX_DEBUG(_L("VideoServiceUriFetch::VideoServiceUriFetch()"));
 	mServiceApp = parent;
 }
 
@@ -34,14 +38,17 @@
 //
 VideoServiceUriFetch::~VideoServiceUriFetch()
 {
-
+    MPX_DEBUG(_L("VideoServiceUriFetch::~VideoServiceUriFetch()"));
 }
 
 // ----------------------------------------------------------------------------
 // fetch()
 // ----------------------------------------------------------------------------
 //
-void VideoServiceUriFetch::fetch(const QString& title)
+void VideoServiceUriFetch::fetch( const QString& title )
 {
-    mServiceApp->setCurrentService(VideoServices::EUriFetcher);
+    MPX_DEBUG(_L("VideoServiceUriFetch::fetch()"));
+
+    Q_UNUSED( title );    
+    mServiceApp->setCurrentService( VideoServices::EUriFetcher );
 }