author | Oscar Gonzalez <oscar.1.gonzalez@nokia.com> |
Fri, 04 Jun 2010 13:03:15 +0100 | |
branch | opencode |
changeset 35 | 6fbc08ed9c42 |
parent 32 | 58332560b319 |
permissions | -rw-r--r-- |
24 | 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 |
||
32
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
16 |
/** |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
17 |
@file |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
18 |
@internalAll |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
19 |
*/ |
58332560b319
Bring opencode branch up-to-date with latest cellularsrv changes
Oscar Gonzalez <oscar.1.gonzalez@nokia.com>
parents:
24
diff
changeset
|
20 |
|
24 | 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_*/ |