blob: 68fa1194b53a1f0f066c9176da1f99779798894e [file] [log] [blame]
mukesh agrawal7a4e4002011-09-06 11:26:05 -07001// Copyright (c) 2011 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_wifi.h"
6
7#include <string>
8
9namespace shill {
10
11using std::string;
12
13MockWiFi::MockWiFi(ControlInterface *control_interface,
14 EventDispatcher *dispatcher,
15 Manager *manager,
16 const string &link_name,
17 const string &address,
18 int interface_index)
19 : WiFi(control_interface,
20 dispatcher,
21 manager,
22 link_name,
23 address,
24 interface_index) {}
25
26MockWiFi::~MockWiFi() {}
27
28} // namespace shill