blob: 7523867946dc42aa60a40e0aa159a27ad964cf9a [file] [log] [blame]
mukesh agrawalb20776f2012-02-10 16:00:36 -08001// 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#ifndef SUPPLICANT_BSS_PROXY_INTERFACE_H_
6#define SUPPLICANT_BSS_PROXY_INTERFACE_H_
7
8namespace shill {
9
10// SupplicantBSSProxyInterface declares only the subset of
11// fi::w1::wpa_supplicant1::BSS_proxy that is actually used by WiFi.
12class SupplicantBSSProxyInterface {
13 public:
14 virtual ~SupplicantBSSProxyInterface() {}
15};
16
17} // namespace shill
18
19#endif // SUPPLICANT_BSS_PROXY_INTERFACE_H_