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: TTCEventProperty class declaration. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 #ifndef TCSEVENTPROPERTY_H |
|
21 #define TCSEVENTPROPERTY_H |
|
22 |
|
23 // INCLUDES |
|
24 #include <sensrvproperty.h> |
|
25 |
|
26 #include "tcevent.h" |
|
27 |
|
28 /** |
|
29 * Property event. Property event contains the updated property. |
|
30 * |
|
31 * @lib None |
|
32 * @since S60 5.0 |
|
33 */ |
|
34 NONSHARABLE_CLASS( TTCEventProperty ): public TTCEvent |
|
35 { |
|
36 public: |
|
37 |
|
38 /** |
|
39 * Default C++ constructor. |
|
40 * |
|
41 * @param aId |
|
42 */ |
|
43 TTCEventProperty( const TSensrvProperty& aProperty ); |
|
44 |
|
45 public: |
|
46 |
|
47 /** Property associated to this event */ |
|
48 TSensrvProperty iProperty; |
|
49 }; |
|
50 |
|
51 #endif // TCSEVENTPROPERTY_H |
|
52 |
|
53 // End of File |