blob: 371086c10adb5ce8d89f545da8db85e7b1c93f57 [file] [log] [blame]
Thieu Le3426c8f2012-01-11 17:35:11 -08001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
mukesh agrawal7a4e4002011-09-06 11:26:05 -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_wifi.h"
6
7#include <string>
8
9namespace shill {
10
11using std::string;
12
13MockWiFi::MockWiFi(ControlInterface *control_interface,
14 EventDispatcher *dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080015 Metrics *metrics,
mukesh agrawal7a4e4002011-09-06 11:26:05 -070016 Manager *manager,
17 const string &link_name,
18 const string &address,
19 int interface_index)
20 : WiFi(control_interface,
21 dispatcher,
Thieu Le3426c8f2012-01-11 17:35:11 -080022 metrics,
mukesh agrawal7a4e4002011-09-06 11:26:05 -070023 manager,
24 link_name,
25 address,
26 interface_index) {}
27
28MockWiFi::~MockWiFi() {}
29
30} // namespace shill