blob: 94648e51b21e5ba1063577abb1a1886a927169a0 [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,
20 NULL) {}
Darin Petkov1bdedf12011-08-26 13:32:11 -070021
22MockDHCPConfig::~MockDHCPConfig() {}
23
24} // namespace shill