blob: 5bb7c3c929bd9613930ffdfbd2f23907b3c57b25 [file] [log] [blame]
Matthew Barthfd05d642019-11-14 15:01:57 -06001/**
2 * Copyright © 2019 IBM Corporation
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include <string>
17
18#include "json_config.hpp"
19
20namespace phosphor
21{
22namespace fan
23{
24namespace presence
25{
26
27policies JsonConfig::_policies;
28
29JsonConfig::JsonConfig(const std::string& jsonFile)
30{
31
32}
33
34const policies& JsonConfig::get()
35{
36 return _policies;
37}
38
39} // namespace presence
40} // namespace fan
41} // namespace phosphor