Merge branch 'tizen_3.0' into devel/tizen
[platform/core/system/sensord.git] / src / client / reg_event_info.h
1 /*
2  * sensord
3  *
4  * Copyright (c) 2013 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #ifndef _REG_EVENT_INFO_H_
21 #define _REG_EVENT_INFO_H_
22
23 #include <sensor_common.h>
24
25 class reg_event_info {
26 public:
27         unsigned long long m_id;
28         int m_handle;
29         unsigned int type;
30         unsigned int m_interval;
31         unsigned int m_latency;
32         void *m_cb;
33         void *m_user_data;
34         unsigned long long m_previous_event_time;
35         bool m_fired;
36
37         reg_event_info()
38         : m_id(0), m_handle(-1),
39         type(0), m_interval(POLL_1HZ_MS), m_latency(0),
40         m_cb(NULL), m_user_data(NULL),
41         m_previous_event_time(0), m_fired(false) {}
42
43         ~reg_event_info() {}
44 };
45
46 #endif /* _REG_EVENT_INFO_H_ */