bthci/hci2implementations/CommandsEvents/symbian/inc/commandbaseextension.h
changeset 0 29b1cd4cb562
equal deleted inserted replaced
-1:000000000000 0:29b1cd4cb562
       
     1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 /**
       
    17  @file
       
    18  @internalComponent
       
    19 */
       
    20 
       
    21 #ifndef HCICOMMANDBASEEXTENSION_H
       
    22 #define HCICOMMANDBASEEXTENSION_H
       
    23 
       
    24 #include <e32base.h>
       
    25 #include <bluetooth/hci/completingeventqueryhelper.h>
       
    26 #include <bluetooth/hci/command.h>
       
    27 
       
    28 
       
    29 /**
       
    30 This class provides access to the Event Completion query methods
       
    31 */
       
    32 
       
    33 NONSHARABLE_CLASS(CHCICommandBaseExtension) : public CBase
       
    34 	{
       
    35 	
       
    36 public:
       
    37 	static CHCICommandBaseExtension* NewL();
       
    38 	~CHCICommandBaseExtension();
       
    39 	CHCICompletingEventQueryHelper* CompletingEventQueryHelper();
       
    40 	void SetCompletingEventQueryHelper(CHCICompletingEventQueryHelper*);
       
    41 	
       
    42 private:
       
    43 	CHCICommandBaseExtension();
       
    44 	CHCICompletingEventQueryHelper* iCompletingEventQueryHelper;
       
    45 	
       
    46 	// Reserved for use when the class needs to be extended in a binary compatible way.
       
    47 	TAny* iReserved;
       
    48 
       
    49 	};
       
    50 	
       
    51 #endif // HCICOMMANDBASEEXTENSION_H