Vitaly Buka | 4615e0d | 2015-10-14 15:35:12 -0700 | [diff] [blame] | 1 | // Copyright 2015 The Weave Authors. All rights reserved. |
Robert Ginda | 35ab095 | 2015-09-11 16:23:07 -0700 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
Johan Euphrosine | 3523fdd | 2015-10-14 20:46:05 -0700 | [diff] [blame] | 5 | #ifndef LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_ |
| 6 | #define LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_ |
Robert Ginda | 35ab095 | 2015-09-11 16:23:07 -0700 | [diff] [blame] | 7 | |
Vitaly Buka | 1e36367 | 2015-09-25 14:01:16 -0700 | [diff] [blame] | 8 | #include <weave/provider/bluetooth.h> |
Robert Ginda | 35ab095 | 2015-09-11 16:23:07 -0700 | [diff] [blame] | 9 | |
| 10 | namespace weave { |
| 11 | namespace examples { |
| 12 | |
| 13 | // Example of weave::Bluetooth implemented with bluez. |
Vitaly Buka | 1e36367 | 2015-09-25 14:01:16 -0700 | [diff] [blame] | 14 | class BluetoothImpl : public provider::Bluetooth { |
Robert Ginda | 35ab095 | 2015-09-11 16:23:07 -0700 | [diff] [blame] | 15 | public: |
| 16 | BluetoothImpl(); |
| 17 | |
| 18 | ~BluetoothImpl() override; |
| 19 | }; |
| 20 | |
| 21 | } // namespace examples |
| 22 | } // namespace weave |
| 23 | |
Johan Euphrosine | 3523fdd | 2015-10-14 20:46:05 -0700 | [diff] [blame] | 24 | #endif // LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_ |