diff -r 3738fe97f027 -r 8aed59de29f9 videoplayerapp/videoplayerengine/tsrc/testvideoplayerengine/stub/src/hbinstance.cpp --- 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 + #include "stub/inc/hbinstance.h" -#include +#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::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