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 TMCESTARTINGANSWERERSTREAMS_H |
|
22 #define TMCESTARTINGANSWERERSTREAMS_H |
|
23 |
|
24 |
|
25 #include "mcepreparingstreams.h" |
|
26 |
|
27 |
|
28 |
|
29 /** |
|
30 * Represents MM state for preparing answerer send stream |
|
31 * |
|
32 */ |
|
33 class TMceStartingAnswererStreams : public TMcePreparingStreams |
|
34 { |
|
35 |
|
36 public: // Constructors |
|
37 |
|
38 static void SetAsCurrentStateL( CMceComSession& aSession ); |
|
39 |
|
40 |
|
41 public: // from TMediaManagerState |
|
42 |
|
43 inline TMceMMState Id() |
|
44 { |
|
45 return KMceStartingAnswererStreams; |
|
46 } |
|
47 |
|
48 void EntryL(); |
|
49 |
|
50 protected: // from TMcePreparingStreams |
|
51 |
|
52 void StreamsPreparedL(); |
|
53 void StreamsStartedL(); |
|
54 |
|
55 protected: |
|
56 |
|
57 /** |
|
58 * Consructor |
|
59 */ |
|
60 TMceStartingAnswererStreams( CMceComSession& aSession ); |
|
61 |
|
62 |
|
63 }; |
|
64 |
|
65 #endif//TMCESTARTINGANSWERERSTREAMS_H |
|
66 |
|
67 // End of File |