blob: 4e39743d12c2ce353c8db1a8cf2c1ac0e16bb177 [file] [log] [blame]
Ben Chan99c8a4d2012-05-01 08:11:53 -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/wimax.h"
6
7using std::string;
8
9namespace shill {
10
11WiMax::WiMax(ControlInterface *control,
12 EventDispatcher *dispatcher,
13 Metrics *metrics,
14 Manager *manager,
15 const string &link_name,
16 int interface_index)
17 : Device(control, dispatcher, metrics, manager, link_name, "",
18 interface_index, Technology::kWiMax) {}
19
20WiMax::~WiMax() {}
21
22void WiMax::Start(Error *error, const EnabledStateChangedCallback &callback) {
23}
24
25void WiMax::Stop(Error *error, const EnabledStateChangedCallback &callback) {
26}
27
28bool WiMax::TechnologyIs(const Technology::Identifier type) const {
29 return type == Technology::kWiMax;
30}
31
32void WiMax::Connect(Error *error) {
33}
34
35void WiMax::Disconnect(Error *error) {
36}
37
38} // namespace shill