blob: 23c64a106174f613422fbe68327a578dbc6afc7f [file] [log] [blame]
David Rochbergfa1d31d2012-03-20 10:38:07 -04001// 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_modem.h"
6
7namespace shill {
8
9MockModem::MockModem(const std::string &owner,
Jason Glasgowa585fc32012-06-06 11:04:09 -040010 const std::string &service,
David Rochbergfa1d31d2012-03-20 10:38:07 -040011 const std::string &path,
Prathmesh Prabhu27526f12013-03-25 19:42:18 -070012 ModemInfo *modem_info)
13 : Modem(owner, service, path, modem_info) {}
David Rochbergfa1d31d2012-03-20 10:38:07 -040014
15MockModem::~MockModem() {}
16
17} // namespace shill