blob: 4f121fd6c69df89b39b2a012c16fb802fa4efff3 [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_DBUS_CONTROL_
#define SHILL_DBUS_CONTROL_
#include "shill/control_interface.h"
namespace shill {
// This is the Interface for the control channel for Shill.
class DBusControl : public ControlInterface {
public:
ManagerAdaptorInterface *CreateManagerAdaptor(Manager *manager);
ServiceAdaptorInterface *CreateServiceAdaptor(Service *service);
DeviceAdaptorInterface *CreateDeviceAdaptor(Device *device);
};
} // namespace shill
#endif // SHILL_MANAGER_