blob: aa19dcd4aeb4478fff8fa9ee9418096d3a620a3e [file] [log] [blame]
Ben Chanc07362b2012-05-12 10:54:11 -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_wimax.h"
6
7#include <string>
8
9namespace shill {
10
11using std::string;
12
13MockWiMax::MockWiMax(ControlInterface *control,
14 EventDispatcher *dispatcher,
15 Metrics *metrics,
16 Manager *manager,
17 const string &link_name,
Ben Chan4e64d2d2012-05-16 00:02:25 -070018 const string &address,
Darin Petkovb72b62e2012-05-15 16:55:36 +020019 int interface_index,
20 const RpcIdentifier &path)
Ben Chan4e64d2d2012-05-16 00:02:25 -070021 : WiMax(control, dispatcher, metrics, manager, link_name, address,
22 interface_index, path) {
Ben Chanc07362b2012-05-12 10:54:11 -070023}
24
25MockWiMax::~MockWiMax() {}
26
27} // namespace shill