blob: 7addab7fd30816ea22cc057800b4c63eda101c4f [file] [log] [blame]
// Copyright (c) 2012 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.
#include "shill/dhcp/mock_dhcp_config.h"
using std::string;
namespace shill {
MockDHCPConfig::MockDHCPConfig(ControlInterface* control_interface,
const string& device_name)
: DHCPConfig(control_interface,
nullptr,
nullptr,
device_name,
string(),
string(),
nullptr) {}
MockDHCPConfig::~MockDHCPConfig() {}
void MockDHCPConfig::ProcessEventSignal(const std::string& reason,
const Configuration& configuration) {}
void MockDHCPConfig::ProcessStatusChangeSignal(const std::string& status) {}
} // namespace shill