blob: 4d2cf4d8d18337570c9cb1d158e71a25d59583a2 [file] [log] [blame]
Darin Petkov1bdedf12011-08-26 13:32:11 -07001// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "shill/mock_dhcp_config.h"
6
7namespace shill {
8
9MockDHCPConfig::MockDHCPConfig(ControlInterface *control_interface,
10 EventDispatcher *dispatcher,
11 DHCPProvider *provider,
12 const std::string &device_name,
Paul Stewartd32f4842012-01-11 16:08:13 -080013 const std::string &request_host_name,
Darin Petkov1bdedf12011-08-26 13:32:11 -070014 GLib *glib)
15 : DHCPConfig(control_interface,
16 dispatcher,
17 provider,
18 device_name,
Paul Stewartd32f4842012-01-11 16:08:13 -080019 request_host_name,
Darin Petkov1bdedf12011-08-26 13:32:11 -070020 glib) {}
21
22MockDHCPConfig::~MockDHCPConfig() {}
23
24} // namespace shill