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_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_
      6 #define LIBWEAVE_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_
      7 
      8 namespace weave {
      9 namespace provider {
     10 
     11 // Interface with methods to control bluetooth capability of the device.
     12 class Bluetooth {
     13  public:
     14   // TODO(rginda): Add bluetooth interface methods here.
     15 
     16  protected:
     17   virtual ~Bluetooth() {}
     18 };
     19 
     20 }  // namespace provider
     21 }  // namespace weave
     22 
     23 #endif  // LIBWEAVE_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_
     24