equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2009 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 #ifndef CMUSENGSESSIONMANAGER_H |
|
19 #define CMUSENGSESSIONMANAGER_H |
|
20 |
|
21 // INCLUDES |
|
22 #include "lcengine.h" |
|
23 #include "mccdatareceiverobserver.h" |
|
24 |
|
25 // FORWARD DECLARATIONS |
|
26 class MLcSession; |
|
27 class CMusEngMceSession; |
|
28 class MLcUiProvider; |
|
29 class CMccDataReceiver; |
|
30 class CMccDataSender; |
|
31 |
|
32 class CMusEngSessionManager : public CLcEngine, public MMccDataReceiverObserver |
|
33 { |
|
34 public: |
|
35 |
|
36 static CMusEngSessionManager* NewL(); |
|
37 ~CMusEngSessionManager(); |
|
38 |
|
39 void DataReceived( const TDataMessage& aData ); |
|
40 |
|
41 public: // From CLcEngine |
|
42 |
|
43 MLcSession& Session(); |
|
44 |
|
45 private: // Constructors |
|
46 |
|
47 CMusEngSessionManager(); |
|
48 void ConstructL(); |
|
49 |
|
50 private: // Data |
|
51 |
|
52 CMusEngMceSession* iSession; |
|
53 |
|
54 CMccDataReceiver* iMsgReceiver; |
|
55 CMccDataSender* iMsgSender; |
|
56 |
|
57 }; |
|
58 |
|
59 #endif // CMUSENGSESSIONMANAGER_H |
|
60 |
|
61 // end of file |