blob: cab9384d5ea6de5a5bcc2fdde281e2620d01059e [file] [log] [blame]
// Copyright (c) 2012 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_WIMAX_MANAGER_PROXY_INTERFACE_H_
#define SHILL_WIMAX_MANAGER_PROXY_INTERFACE_H_
#include <vector>
#include "shill/accessor_interface.h"
namespace shill {
class Error;
// These are the methods that a WiMaxManager proxy must support. The interface
// is provided so that it can be mocked in tests.
class WiMaxManagerProxyInterface {
public:
virtual ~WiMaxManagerProxyInterface() {}
// Properties.
virtual std::vector<RpcIdentifier> Devices(Error *error) = 0;
};
} // namespace shill
#endif // SHILL_WIMAX_MANAGER_PROXY_INTERFACE_H_