videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/hbinstance.cpp
changeset 36 8aed59de29f9
parent 35 3738fe97f027
child 44 518105d52e45
--- a/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/hbinstance.cpp	Thu Apr 01 23:32:44 2010 +0300
+++ b/videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/hbinstance.cpp	Fri Apr 16 18:13:14 2010 +0300
@@ -15,8 +15,12 @@
 *
 */
 
+// Version : %version:  %
+
+#include <hbmainwindow.h>
+
 #include "stub/inc/hbinstance.h"
-#include <hbmainwindow.h>
+#include "mpxvideo_debug.h"
 
 bool initialised = false;
 HbInstance* mInstance = 0;
@@ -24,14 +28,18 @@
 
 HbInstance::HbInstance()
 {
+    MPX_DEBUG(_L("HbInstance::HbInstance()"));
 }
 
 HbInstance::~HbInstance()
 {
+    MPX_DEBUG(_L("HbInstance::~HbInstance()"));
 }
 
 HbInstance* HbInstance::instance()
 {
+    MPX_ENTER_EXIT(_L("TestVideoServices::instance()"));
+    
     if (!initialised)
     {
     	mInstance = new HbInstance();  
@@ -43,23 +51,28 @@
 
 HbInstance* HbInstance::primaryWindow() const
 {
+    MPX_DEBUG(_L("HbInstance::primaryWindow()"));
 	return mInstance;
 }
 
 QList<HbInstance *> HbInstance::allMainWindows() const
 {
+    MPX_DEBUG(_L("HbInstance::allMainWindows()"));
 	return mInstances;
 }
 
 void HbInstance::removeView( QGraphicsWidget* )
 {
+    MPX_DEBUG(_L("HbInstance::removeView()"));
 }
 
 void HbInstance::addView( QGraphicsWidget* )
 {
+    MPX_DEBUG(_L("HbInstance::addView()"));
 }
 
 void HbInstance::setCurrentView( HbView*, bool animation )
 {
+    MPX_DEBUG(_L("HbInstance::setCurrentView()"));
 }
 		
\ No newline at end of file