blob: cadb704e4a6ec45a21ad5905eafb454f7bd08306 [file] [log] [blame]
Darin Petkovc90fe522011-07-15 13:59:47 -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
Ben Chanc45688b2014-07-02 23:50:45 -07005#ifndef SHILL_MODEM_MANAGER_PROXY_INTERFACE_H_
6#define SHILL_MODEM_MANAGER_PROXY_INTERFACE_H_
Darin Petkovc90fe522011-07-15 13:59:47 -07007
8#include <vector>
9
10#include <dbus-c++/types.h>
11
12namespace shill {
13
14// These are the methods that a ModemManager proxy must support. The interface
15// is provided so that it can be mocked in tests.
16class ModemManagerProxyInterface {
17 public:
18 virtual ~ModemManagerProxyInterface() {}
19
20 virtual std::vector<DBus::Path> EnumerateDevices() = 0;
21};
22
23} // namespace shill
24
Ben Chanc45688b2014-07-02 23:50:45 -070025#endif // SHILL_MODEM_MANAGER_PROXY_INTERFACE_H_