blob: 0df0732c87c0f51ce8cdbc57a5ea227e274831c6 [file] [log] [blame]
// Copyright 2018 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/ethernet/mock_ethernet.h"
#include <string>
namespace shill {
using std::string;
MockEthernet::MockEthernet(Manager* manager,
const string& link_name,
const string& address,
int interface_index)
: Ethernet(manager, link_name, address, interface_index) {}
MockEthernet::~MockEthernet() = default;
} // namespace shill