Home | History | Annotate | Download | only in provider
      1 // Copyright 2015 The Weave 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 LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_
      6 #define LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_
      7 
      8 #include <weave/provider/bluetooth.h>
      9 
     10 namespace weave {
     11 namespace examples {
     12 
     13 // Example of weave::Bluetooth implemented with bluez.
     14 class BluetoothImpl : public provider::Bluetooth {
     15  public:
     16   BluetoothImpl();
     17 
     18   ~BluetoothImpl() override;
     19 };
     20 
     21 }  // namespace examples
     22 }  // namespace weave
     23 
     24 #endif  // LIBWEAVE_EXAMPLES_PROVIDER_BLUEZ_CLIENT_H_
     25