syncmlfw/common/obex/obexclient/inc/Btconninfo.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:  Info class for BT connection
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef TBTCONNINFO_H
       
    21 #define TBTCONNINFO_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32base.h>
       
    25 #include <bttypes.h>
       
    26 
       
    27 /**
       
    28  *	Bluetooth connection info
       
    29  */
       
    30 class TBTConnInfo
       
    31     {
       
    32     public:  // Constructors and destructor
       
    33         
       
    34         /**
       
    35         * C++ default constructor.
       
    36         */
       
    37         IMPORT_C TBTConnInfo();
       
    38 		
       
    39         /**
       
    40         * Destructor.
       
    41         */
       
    42         IMPORT_C virtual ~TBTConnInfo();
       
    43 
       
    44     public: // New functions
       
    45 
       
    46     public:     // Data
       
    47 
       
    48 		// Device address
       
    49  		TBTDevAddr iDevAddr;
       
    50 
       
    51 		// Service class UUID
       
    52 		TUUID iServiceClass;
       
    53     };
       
    54 
       
    55 #endif      // TBTCONNINFO_H   
       
    56             
       
    57 // End of File