williamr@4: // Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). williamr@4: // All rights reserved. williamr@4: // This component and the accompanying materials are made available williamr@4: // under the terms of "Eclipse Public License v1.0" williamr@4: // which accompanies this distribution, and is available williamr@4: // at the URL "http://www.eclipse.org/legal/epl-v10.html". williamr@4: // williamr@4: // Initial Contributors: williamr@4: // Nokia Corporation - initial contribution. williamr@4: // williamr@4: // Contributors: williamr@4: // williamr@4: // Description: williamr@4: // williamr@4: williamr@4: #ifndef BTSYNCBANDWIDTH_H williamr@4: #define BTSYNCBANDWIDTH_H williamr@4: williamr@4: #include williamr@4: williamr@4: /** williamr@4: @file williamr@4: @publishedAll williamr@4: @released williamr@4: */ williamr@4: williamr@4: /** williamr@4: A pair of transmit and receive bandwidths for use on synchronous Bluetooth links williamr@4: */ williamr@4: NONSHARABLE_CLASS(TBTSyncBandwidth) williamr@4: { williamr@4: public: williamr@4: IMPORT_C TBTSyncBandwidth(); williamr@4: IMPORT_C TBTSyncBandwidth(TUint aBandwidth); williamr@4: williamr@4: TUint32 iTransmit; williamr@4: TUint32 iReceive; williamr@4: williamr@4: private: williamr@4: // This data padding has been added to help prevent future binary compatibility breaks williamr@4: // Neither iPadding1 nor iPadding2 have been zero'd because they are currently not used williamr@4: TUint32 iPadding1; williamr@4: TUint32 iPadding2; williamr@4: }; williamr@4: #endif // BTSYNCBANDWIDTH_H