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: TTCEventMagnetometer class declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TCSEVENTMAGNETOMETERDATA_H |
|
21 #define TCSEVENTMAGNETOMETERDATA_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <sensrvmagnetometersensor.h> |
|
25 |
|
26 #include "tcevent.h" |
|
27 |
|
28 // FORWARD DECLARATIONS |
|
29 |
|
30 // DATA TYPES |
|
31 |
|
32 /** |
|
33 * Magnetometer event. Magnetometer event contains the new |
|
34 * magnetometer XYZ axis data. |
|
35 * |
|
36 * @lib None |
|
37 * @since S60 5.0 |
|
38 */ |
|
39 NONSHARABLE_CLASS( TTCEventMagnetometer ): public TTCEvent |
|
40 { |
|
41 public: |
|
42 |
|
43 /** |
|
44 * Default C++ constructor. |
|
45 * |
|
46 * @param aId |
|
47 */ |
|
48 TTCEventMagnetometer( const TSensrvMagnetometerAxisData& aData ); |
|
49 |
|
50 public: |
|
51 |
|
52 /** Magnetometer data */ |
|
53 TSensrvMagnetometerAxisData iData; |
|
54 }; |
|
55 |
|
56 #endif // TCSEVENTMAGNETOMETERDATA_H |
|
57 |
|
58 // End of File |