equal
deleted
inserted
replaced
|
1 // Copyright (c) 1997-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 // GATINIT.H |
|
15 // Not used at the moment 13:7:98 |
|
16 // Initialization of the GSM capabilites of the Mobile Equipment (ME) |
|
17 // |
|
18 // |
|
19 |
|
20 /** |
|
21 @file |
|
22 @internalAll |
|
23 */ |
|
24 |
|
25 #ifndef __GATININT_H__ |
|
26 #define __GATININT_H__ |
|
27 |
|
28 #include "atbase.h" |
|
29 #include "atinit.h" |
|
30 |
|
31 class CATBase; |
|
32 class CGATInit : public CATBase |
|
33 { |
|
34 public: |
|
35 static CGATInit* NewL(CATIO* aIo,CTelObject* aTelObject,CHayesStatus* aHayesStatus); |
|
36 ~CGATInit(); |
|
37 protected: |
|
38 CGATInit(CATIO* aIo,CTelObject* aTelObject,CHayesStatus* aHayesStatus); |
|
39 virtual void EventSignal(TEventSource aSource); |
|
40 virtual void CompleteWithIOError(TEventSource aSource,TInt aStatus); |
|
41 private: |
|
42 }; |
|
43 |
|
44 #endif |