equal
deleted
inserted
replaced
|
1 /* |
|
2 * Copyright (c) 2007 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: TTCStateTilt class declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TCSTATETILT_H |
|
21 #define TCSTATETILT_H |
|
22 |
|
23 // INCLUDES |
|
24 #include "tcstate.h" |
|
25 |
|
26 // CLASS DECLARATION |
|
27 |
|
28 /** |
|
29 * Base class for all tilt channel (CTCChannelTilt) states. |
|
30 * |
|
31 * @lib None |
|
32 * @since S60 5.0 |
|
33 */ |
|
34 NONSHARABLE_CLASS( CTCStateTilt ): public CTCState |
|
35 { |
|
36 protected: |
|
37 |
|
38 /** |
|
39 * Default C++ constructor. |
|
40 * |
|
41 * @param aId |
|
42 * @param aStatePool |
|
43 * @param aTransactionHandler |
|
44 */ |
|
45 CTCStateTilt( TCStateId aId, |
|
46 MTCStatePool& aStatePool, |
|
47 MTCTransactionHandler& aTransactionHandler ); |
|
48 }; |
|
49 |
|
50 #endif // TCSTATETILT_H |
|
51 |
|
52 // End of File |