phonesrv_plat/dial_utils_api/inc/dialutils.h
changeset 51 12bc758d6a02
parent 48 78df25012fda
child 53 25b8d29b7c59
--- a/phonesrv_plat/dial_utils_api/inc/dialutils.h	Fri Sep 17 17:09:13 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,89 +0,0 @@
-/*
-* Copyright (c) 2004 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:  API for DialUtils usage.
-*
-*/
-
-
-#ifndef DIALUTILS_H
-#define DIALUTILS_H
-
-
-//  INCLUDES
-#include <e32base.h>
-
-
-// CLASS DECLARATION
-
-/**
-*  The API for DialUtils usage.
-*
-*  @lib DialUtils.lib
-*  @since 2.6
-*/
-class CDialUtilsApi 
-:   public CBase
-    {
-    public: // New functions
-
-        /**
-        * Check and if needed modify the given phone number according to
-        * current configuration and location. Currently supports:
-        * 1) Japan prefix modifications.
-        * 
-        * @param aPhoneNumber The phone number to be checked and modified.
-        * @return - KErrNone if successful,
-        *         - KErrOverflow if the aPhoneNumber is too short for the 
-        *           combined original phone number + prefix number,
-        *         - Symbian error code otherwise.
-        *         In error case the aPhoneNumber is untouched.
-        */
-        virtual TInt CheckNumber( HBufC& aPhoneNumber ) = 0;
-    };
-
-
-
-/**
-*  Interface for DialUtils creation.
-*
-*  @lib DialUtils.lib
-*  @since 2.6
-*/
-class CDialUtilsFactory
-:   public CBase
-    {
-    public:
-
-        /**
-        * Creates DialUtils.
-        * CDialUtilsFactory instance is deleted even in leave case.
-        * 
-        * @return CDialUtilsApi implementation. NULL if not supported.
-        *         Ownership transferred.
-        */
-        virtual CDialUtilsApi* CDialUtilsApiLD() = 0;
-
-    };
-
-/**
-* Only exported function. This is in index 1 in the lookup table.
-* Call this function to create CDialUtilsFactory instance.
-* 
-* IMPORT_C CDialUtilsFactory* CreateDialUtilsFactoryL();
-*/ 
-
-
-#endif   // DIALUTILS_H
-
-// End of File