aboutsummaryrefslogtreecommitdiff
path: root/include/weave/provider/bluetooth.h
blob: 6a47e923a47eff864b1d951cd4d702512a93a9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2015 The Weave Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef LIBWEAVE_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_
#define LIBWEAVE_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_

namespace weave {
namespace provider {

// Interface with methods to control bluetooth capability of the device.
class Bluetooth {
 public:
  // TODO(rginda): Add bluetooth interface methods here.

 protected:
  virtual ~Bluetooth() {}
};

}  // namespace provider
}  // namespace weave

#endif  // LIBWEAVE_INCLUDE_WEAVE_PROVIDER_BLUETOOTH_H_