wlan_bearer/wlanengine/wlan_common/wlanengine_common_3.1/src/core_wpx_adaptation_stub_factory.cpp
changeset 0 c40eb8fe8501
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/wlan_bearer/wlanengine/wlan_common/wlanengine_common_3.1/src/core_wpx_adaptation_stub_factory.cpp	Tue Feb 02 02:03:13 2010 +0200
@@ -0,0 +1,42 @@
+/*
+* Copyright (c) 2006-2007 Nokia Corporation and/or its subsidiary(-ies).
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of the License "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:  Static factory class for instantiating a stub version WPX adaptation.
+*
+*/
+
+
+// ======== MEMBER FUNCTIONS ========
+
+#include "core_wpx_adaptation_factory.h"
+#include "core_wpx_adaptation_stub.h"
+
+// ---------------------------------------------------------------------------
+// ---------------------------------------------------------------------------
+//
+abs_core_wpx_adaptation_c* core_wpx_adaptation_factory_c::instance(
+    core_server_c* /* server */,
+    abs_core_driverif_c* /* drivers */,
+    abs_core_server_callback_c* /* adaptation */ )
+    {
+    DEBUG( "core_wpx_adaptation_stub_factory::instance() " );
+
+    core_wpx_adaptation_stub_c* instance = new core_wpx_adaptation_stub_c();
+    if ( !instance )
+        {
+        DEBUG( "core_wpx_adaptation_stub_factory::instance() - unable to core_wpx_adaptation_stub_c" );
+        return NULL;
+        }
+
+    return instance;
+    }