equal
deleted
inserted
replaced
|
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of "Eclipse Public License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 /** |
|
17 @file |
|
18 @internalAll |
|
19 */ |
|
20 |
|
21 #ifndef TESTSATTSYFACTORY_H_ |
|
22 #define TESTSATTSYFACTORY_H_ |
|
23 |
|
24 #include <e32std.h> |
|
25 #include <e32base.h> |
|
26 |
|
27 class MMessageRouter; |
|
28 class MCtsySatService; |
|
29 class MmMessageManagerCallback; |
|
30 class CTsySatMessagingBase; |
|
31 |
|
32 //IMPORT_C |
|
33 |
|
34 class CSatTsyFactory : public CBase |
|
35 { |
|
36 public: |
|
37 struct TSatTsyPtrContainer |
|
38 { |
|
39 CTsySatMessagingBase* iSatTsy; |
|
40 MmMessageManagerCallback* iSatTsyMessageManagerCallback; |
|
41 }; |
|
42 public: |
|
43 static CSatTsyFactory* NewL(); |
|
44 IMPORT_C static CSatTsyFactory* NewLC(); |
|
45 virtual ~CSatTsyFactory(); |
|
46 virtual TSatTsyPtrContainer CreateSatTsyL(MMessageRouter& aMmMessageRouter, MCtsySatService& aSatService); |
|
47 |
|
48 protected: |
|
49 CSatTsyFactory(); |
|
50 }; |
|
51 |
|
52 #endif /*TESTSATTSYFACTORY_H_*/ |