equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2005 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 #ifndef CMCEENDPOINTPROXY_H |
|
22 #define CMCEENDPOINTPROXY_H |
|
23 |
|
24 #include <e32std.h> |
|
25 |
|
26 class CMceMediaSink; |
|
27 |
|
28 |
|
29 /** |
|
30 * |
|
31 * |
|
32 * @lib |
|
33 */ |
|
34 class MMceEndPointProxy |
|
35 { |
|
36 |
|
37 public: |
|
38 |
|
39 /** |
|
40 * Does proxy serve client |
|
41 * @param aClient a client |
|
42 * @return ETrue, if proxy serves client |
|
43 */ |
|
44 virtual TBool ServesProxyClient( const CMceMediaSink& aClient ) const = 0; |
|
45 |
|
46 |
|
47 /** |
|
48 * Adds client to proxy |
|
49 * @param aClient a client |
|
50 */ |
|
51 virtual void AddProxyClientL( CMceMediaSink& aClient ) = 0; |
|
52 |
|
53 /** |
|
54 * Removes client from proxy |
|
55 * @param aClient a client |
|
56 */ |
|
57 virtual void RemoveProxyClient( CMceMediaSink& aClient ) = 0; |
|
58 |
|
59 }; |
|
60 |
|
61 |
|
62 #endif // CMCEENDPOINTPROXY_H |