sensord: add the basic implementation of the server-side
[platform/core/system/sensord.git] / src / server / sensor_manager.cpp
1 /*
2  * sensord
3  *
4  * Copyright (c) 2017 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 #include "sensor_manager.h"
21
22 #include <unistd.h>
23 #include <sensor_log.h>
24 #include <string>
25 #include <vector>
26 #include <memory>
27 #include <algorithm>
28
29 using namespace sensor;
30
31 sensor_manager::sensor_manager(ipc::event_loop *loop)
32 : m_loop(loop)
33 {
34 }
35
36 sensor_manager::~sensor_manager()
37 {
38 }
39
40 bool sensor_manager::init(void)
41 {
42         return true;
43 }
44
45 bool sensor_manager::deinit(void)
46 {
47         return true;
48 }
49