blob: 7bd53e96ec2b71a5867aaeb2c53fc82cd0ef4422 [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,
18 int interface_index)
19 : WiMax(control, dispatcher, metrics, manager, link_name, interface_index) {
20}
21
22MockWiMax::~MockWiMax() {}
23
24} // namespace shill