Ben Chan | c07362b | 2012-05-12 10:54:11 -0700 | [diff] [blame] | 1 | // 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 | |
| 9 | namespace shill { |
| 10 | |
| 11 | using std::string; |
| 12 | |
| 13 | MockWiMax::MockWiMax(ControlInterface *control, |
| 14 | EventDispatcher *dispatcher, |
| 15 | Metrics *metrics, |
| 16 | Manager *manager, |
| 17 | const string &link_name, |
Ben Chan | 4e64d2d | 2012-05-16 00:02:25 -0700 | [diff] [blame] | 18 | const string &address, |
Darin Petkov | b72b62e | 2012-05-15 16:55:36 +0200 | [diff] [blame] | 19 | int interface_index, |
| 20 | const RpcIdentifier &path) |
Ben Chan | 4e64d2d | 2012-05-16 00:02:25 -0700 | [diff] [blame] | 21 | : WiMax(control, dispatcher, metrics, manager, link_name, address, |
| 22 | interface_index, path) { |
Ben Chan | c07362b | 2012-05-12 10:54:11 -0700 | [diff] [blame] | 23 | } |
| 24 | |
| 25 | MockWiMax::~MockWiMax() {} |
| 26 | |
| 27 | } // namespace shill |