blob: 1097dae00252d619fb41e3ba3345ea0bb270879f [file] [log] [blame]
Paul Stewartd408fdf2012-05-07 17:15:57 -07001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Darin Petkov1bdedf12011-08-26 13:32:11 -07002// 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
Paul Stewartd408fdf2012-05-07 17:15:57 -07007using std::string;
8
Darin Petkov1bdedf12011-08-26 13:32:11 -07009namespace shill {
10
11MockDHCPConfig::MockDHCPConfig(ControlInterface *control_interface,
Paul Stewartd408fdf2012-05-07 17:15:57 -070012 const string &device_name)
Darin Petkov1bdedf12011-08-26 13:32:11 -070013 : DHCPConfig(control_interface,
Paul Stewartd408fdf2012-05-07 17:15:57 -070014 NULL,
15 NULL,
Darin Petkov1bdedf12011-08-26 13:32:11 -070016 device_name,
Paul Stewartd408fdf2012-05-07 17:15:57 -070017 string(),
18 string(),
19 false,
Paul Stewart75a68b92013-10-24 10:50:27 -070020 false,
Paul Stewartd408fdf2012-05-07 17:15:57 -070021 NULL) {}
Darin Petkov1bdedf12011-08-26 13:32:11 -070022
23MockDHCPConfig::~MockDHCPConfig() {}
24
25} // namespace shill