blob: c640789ccb94e70081b61eb797147cd052aa0011 [file] [log] [blame]
Darin Petkov5c97ac52011-07-19 16:30:49 -07001// Copyright (c) 2011 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/modem.h"
6
7#include "shill/dbus_properties_proxy_interface.h"
8#include "shill/proxy_factory.h"
9
10namespace shill {
11
12Modem::Modem(const std::string &owner,
13 const std::string &path,
14 ControlInterface *control_interface,
15 EventDispatcher *dispatcher,
16 Manager *manager)
17 : dbus_properties_proxy_(
18 ProxyFactory::factory()->CreateDBusPropertiesProxy(this, path, owner)),
19 control_interface_(control_interface),
20 dispatcher_(dispatcher),
21 manager_(manager) {}
22
23Modem::~Modem() {}
24
25} // namespace shill