blob: 4793812df00cb30be1bdd3ce5cc980637f779d28 [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,
Darin Petkovb72b62e2012-05-15 16:55:36 +020018 int interface_index,
19 const RpcIdentifier &path)
20 : WiMax(control, dispatcher, metrics, manager, link_name, interface_index,
21 path) {
Ben Chanc07362b2012-05-12 10:54:11 -070022}
23
24MockWiMax::~MockWiMax() {}
25
26} // namespace shill