blob: 7aeea0348d450391d3e2ca0150137ea0d2831d95 [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_DBUS_PROPERTIES_PROXY_INTERFACE_
#define SHILL_DBUS_PROPERTIES_PROXY_INTERFACE_
#include "shill/dbus_properties.h"
namespace shill {
// These are the methods that a DBusProperties proxy must support. The interface
// is provided so that it can be mocked in tests.
class DBusPropertiesProxyInterface {
public:
virtual ~DBusPropertiesProxyInterface() {}
virtual DBusPropertiesMap GetAll(const std::string &interface_name) = 0;
};
} // namespace shill
#endif // SHILL_DBUS_PROPERTIES_PROXY_INTERFACE_