blob: 95e0a0b7be109282e8ad110a90eba40e3bcafacf [file] [log] [blame]
mukesh agrawal9da07772013-05-15 14:15:17 -07001// Copyright (c) 2012 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_virtual_device.h"
6
7namespace shill {
8
Paul Stewart1e006c62015-06-16 12:29:06 -07009MockVirtualDevice::MockVirtualDevice(ControlInterface* control,
10 EventDispatcher* dispatcher,
11 Metrics* metrics,
12 Manager* manager,
13 const std::string& link_name,
mukesh agrawal9da07772013-05-15 14:15:17 -070014 int interface_index,
15 Technology::Identifier technology)
16 : VirtualDevice(control, dispatcher, metrics, manager, link_name,
17 interface_index, technology) {}
18
19MockVirtualDevice::~MockVirtualDevice() {}
20
21} // namespace shill