syncmlfw/common/obex/obexclient/inc/ExtBTSearcherObserver.h
changeset 0 b497e44ab2fc
equal deleted inserted replaced
-1:000000000000 0:b497e44ab2fc
       
     1 /*
       
     2 * Copyright (c) 2002 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Observer class for BT searchers
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef MEXTBTSEARCHEROBSERVER_H
       
    21 #define MEXTBTSEARCHEROBSERVER_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 
       
    26 // FORWARD DECLARATIONS
       
    27 class TBTDeviceResponseParams;
       
    28 class TIrdaSockAddr;
       
    29 
       
    30 // CLASS DECLARATION
       
    31 
       
    32 class MExtBTSearcherObserver 
       
    33     {
       
    34 
       
    35     public:  // Constructors and destructors
       
    36         
       
    37 	virtual ~MExtBTSearcherObserver(){};
       
    38 
       
    39     public: // New functions
       
    40 
       
    41 	/**
       
    42 	 *	Notify BT device found
       
    43 	 */
       
    44 	virtual void BTDeviceFoundL(
       
    45 		const TBTDeviceResponseParams& aDevResponseParams ) = 0;
       
    46 
       
    47 	/**
       
    48 	 *	Notify BT device search error
       
    49 	 */
       
    50 	virtual void BTDeviceErrorL( TInt aErr ) = 0;
       
    51     };
       
    52 
       
    53 #endif      // MEXTBTSEARCHEROBSERVER_H   
       
    54             
       
    55 // End of File