mukesh agrawal | b20776f | 2012-02-10 16:00:36 -0800 | [diff] [blame] | 1 | // 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 | |
| 8 | namespace shill { |
| 9 | |
| 10 | // SupplicantBSSProxyInterface declares only the subset of |
| 11 | // fi::w1::wpa_supplicant1::BSS_proxy that is actually used by WiFi. |
| 12 | class SupplicantBSSProxyInterface { |
| 13 | public: |
| 14 | virtual ~SupplicantBSSProxyInterface() {} |
| 15 | }; |
| 16 | |
| 17 | } // namespace shill |
| 18 | |
| 19 | #endif // SUPPLICANT_BSS_PROXY_INTERFACE_H_ |