remotemgmt_plat/oma_provisioning_engine_api/inc/WPPhoneFactory.h
branchRCL_3
changeset 25 b183ec05bd8c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/remotemgmt_plat/oma_provisioning_engine_api/inc/WPPhoneFactory.h	Tue Aug 31 16:04:06 2010 +0300
@@ -0,0 +1,49 @@
+/*
+* Copyright (c) 2002 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:  WPPhoneFactory can be used to create phone interface.
+*
+*/
+
+
+#ifndef WPPHONEFACTORY_H
+#define WPPHONEFACTORY_H
+
+// FORWARD DECLARATIONS
+class MWPPhone;
+
+//  CLASS DEFINITION
+
+/**
+*  Factory class for phone interface.
+*
+*  @lib ProvisioningEngine
+*  @since 2.0
+*/
+class WPPhoneFactory 
+    {
+    public:
+        /**
+        * Creates all adapters and stores them in an array.
+        * @return Array of adapters. Ownership is transferred.
+        */
+        IMPORT_C static MWPPhone* CreateL();
+
+        /**
+        * Creates all adapters and stores them in an array.
+        * @return Array of adapters. Ownership is transferred.
+        */
+        IMPORT_C static MWPPhone* CreateLC();
+    };
+
+#endif /* WPPHONEFACTORY_H*/
\ No newline at end of file