1*e10416ecSMatt Spinler /** 2*e10416ecSMatt Spinler * Copyright © 2017 IBM Corporation 3*e10416ecSMatt Spinler * 4*e10416ecSMatt Spinler * Licensed under the Apache License, Version 2.0 (the "License"); 5*e10416ecSMatt Spinler * you may not use this file except in compliance with the License. 6*e10416ecSMatt Spinler * You may obtain a copy of the License at 7*e10416ecSMatt Spinler * 8*e10416ecSMatt Spinler * http://www.apache.org/licenses/LICENSE-2.0 9*e10416ecSMatt Spinler * 10*e10416ecSMatt Spinler * Unless required by applicable law or agreed to in writing, software 11*e10416ecSMatt Spinler * distributed under the License is distributed on an "AS IS" BASIS, 12*e10416ecSMatt Spinler * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13*e10416ecSMatt Spinler * See the License for the specific language governing permissions and 14*e10416ecSMatt Spinler * limitations under the License. 15*e10416ecSMatt Spinler */ 16*e10416ecSMatt Spinler #include "manager.hpp" 17*e10416ecSMatt Spinler 18*e10416ecSMatt Spinler namespace phosphor 19*e10416ecSMatt Spinler { 20*e10416ecSMatt Spinler namespace fan 21*e10416ecSMatt Spinler { 22*e10416ecSMatt Spinler namespace control 23*e10416ecSMatt Spinler { 24*e10416ecSMatt Spinler 25*e10416ecSMatt Spinler Manager::Manager(sdbusplus::bus::bus& bus) : 26*e10416ecSMatt Spinler _bus(bus) 27*e10416ecSMatt Spinler { 28*e10416ecSMatt Spinler //TODO 29*e10416ecSMatt Spinler } 30*e10416ecSMatt Spinler 31*e10416ecSMatt Spinler 32*e10416ecSMatt Spinler } 33*e10416ecSMatt Spinler } 34*e10416ecSMatt Spinler } 35