equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-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 #ifndef AVRCPBEARERINTERFACE_H |
|
17 #define AVRCPBEARERINTERFACE_H |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent |
|
22 @released |
|
23 */ |
|
24 |
|
25 #include <e32base.h> |
|
26 #include <bt_sock.h> |
|
27 |
|
28 class MIncomingCommandHandler; |
|
29 class MOutgoingCommandHandler; |
|
30 NONSHARABLE_CLASS(MAvrcpBearer) |
|
31 { |
|
32 public: |
|
33 virtual MIncomingCommandHandler* IncomingHandler(const TBTDevAddr& aAddr) = 0; |
|
34 virtual MOutgoingCommandHandler* OutgoingHandler(const TBTDevAddr& aAddr) = 0; |
|
35 |
|
36 virtual void ConnectIndicate(const TBTDevAddr& aBTDevice) = 0; |
|
37 virtual void ConnectConfirm(const TBTDevAddr& aBTDevice, TInt aError) = 0; |
|
38 virtual void DisconnectIndicate(const TBTDevAddr& aBTDevice) = 0; |
|
39 virtual void DisconnectConfirm(const TBTDevAddr& aBTDevice, TInt aError) = 0; |
|
40 }; |
|
41 |
|
42 #endif //AVRCPBEARERINTERFACE_H |