mmfenh/enhancedmediaclient/Client/src/Components/CMMFAudioOutputSink/CMMFAudioOutputSink.h
equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2006 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: Definition of the MmfAudioOutputSink class. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef CMMFAUDIOOUTPUTSINK_H |
|
20 #define CMMFAUDIOOUTPUTSINK_H |
|
21 |
|
22 #include <e32base.h> |
|
23 #include <SinkControl.h> |
|
24 #include "SinkBase.h" |
|
25 #include <ControlObserver.h> |
|
26 |
|
27 namespace multimedia |
|
28 { |
|
29 |
|
30 class CMmfAudioOutputSink : public CSinkBase, |
|
31 public MSinkControl |
|
32 { |
|
33 public: |
|
34 CMmfAudioOutputSink(); |
|
35 ~CMmfAudioOutputSink(); |
|
36 TInt PostConstructor(); |
|
37 |
|
38 // From MControl begins |
|
39 TInt AddObserver( MControlObserver& aObserver ); |
|
40 TInt RemoveObserver( MControlObserver& aObserver ); |
|
41 TUid Type(); |
|
42 TControlType ControlType(); |
|
43 // From MControl ends |
|
44 |
|
45 // From CSinkBase begins |
|
46 TUid GetSinkUid(); |
|
47 // From CSourceBase ends |
|
48 |
|
49 private: |
|
50 }; |
|
51 } // namespace multimedia |
|
52 |
|
53 #endif // CMMFAUDIOOUTPUTSINK_H |
|
54 |
|
55 // End of file |