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 * See class description. |
|
16 * |
|
17 */ |
|
18 |
|
19 |
|
20 #ifndef __TPHONECMDPARAMAUDIOOUTPUT_H |
|
21 #define __TPHONECMDPARAMAUDIOOUTPUT_H |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <w32std.h> |
|
26 #include <pevirtualengine.h> |
|
27 #include "tphonecommandparam.h" |
|
28 |
|
29 // DATA TYPES |
|
30 |
|
31 // CLASS DECLARATION |
|
32 |
|
33 /** |
|
34 * A parameter class for call header information. |
|
35 */ |
|
36 class TPhoneCmdParamAudioOutput : public TPhoneUICommandParam |
|
37 { |
|
38 public: |
|
39 |
|
40 /** |
|
41 * C++ default constructor. |
|
42 */ |
|
43 IMPORT_C TPhoneCmdParamAudioOutput(); |
|
44 |
|
45 public: |
|
46 |
|
47 /** |
|
48 * Sets the audio output |
|
49 * @param aAudioOutput is the accessory mode |
|
50 */ |
|
51 IMPORT_C void SetAudioOutput( |
|
52 TPEAudioOutput aAudioOutput ); |
|
53 |
|
54 /** |
|
55 * Returns the audio output |
|
56 * @return Returns the audio output |
|
57 */ |
|
58 IMPORT_C TPEAudioOutput AudioOutput() const; |
|
59 |
|
60 private: |
|
61 |
|
62 /** |
|
63 * Audio path |
|
64 */ |
|
65 TPEAudioOutput iAudioOutput; |
|
66 |
|
67 }; |
|
68 |
|
69 #endif // _TPHONECMDPARAMAUDIOOUTPUT_H |
|
70 |
|
71 // End of File |