videocollection/tsrc/simplevideoplayback/src/svpbdocumentloader.cpp
changeset 50 21fe8338c6bf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/videocollection/tsrc/simplevideoplayback/src/svpbdocumentloader.cpp	Fri Aug 06 09:43:48 2010 +0300
@@ -0,0 +1,43 @@
+/*
+* Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  Document loader of the SimpleVideoPlayback MPX view plugin.
+*
+*/
+
+#include "svpbdocumentloader.h"
+#include "svpbview.h"
+#include "trace.h"
+
+SvpbDocumentLoader::SvpbDocumentLoader()
+{
+}
+
+QObject *SvpbDocumentLoader::createObject(const QString& type, const QString &name)
+{
+    FUNC_LOG;
+    INFO("Create object" << type << name);
+
+    QObject *object = 0;
+
+    if (type == SvpbView::staticMetaObject.className()) {
+        object = new SvpbView;
+    }
+
+    if (object) {
+        object->setObjectName(name);
+        return object;
+    }
+
+    return HbDocumentLoader::createObject(type, name);
+}