1f86123d4738a875523df9d9c10143d766309cba3Robert Ginda/*
2f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * Copyright (C) 2015 The Android Open Source Project
3f86123d4738a875523df9d9c10143d766309cba3Robert Ginda *
4f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * Licensed under the Apache License, Version 2.0 (the "License");
5f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * you may not use this file except in compliance with the License.
6f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * You may obtain a copy of the License at
7f86123d4738a875523df9d9c10143d766309cba3Robert Ginda *
8f86123d4738a875523df9d9c10143d766309cba3Robert Ginda *      http://www.apache.org/licenses/LICENSE-2.0
9f86123d4738a875523df9d9c10143d766309cba3Robert Ginda *
10f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * Unless required by applicable law or agreed to in writing, software
11f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * distributed under the License is distributed on an "AS IS" BASIS,
12f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * See the License for the specific language governing permissions and
14f86123d4738a875523df9d9c10143d766309cba3Robert Ginda * limitations under the License.
15f86123d4738a875523df9d9c10143d766309cba3Robert Ginda */
16f86123d4738a875523df9d9c10143d766309cba3Robert Ginda
17f86123d4738a875523df9d9c10143d766309cba3Robert Ginda#include "buffet/bluetooth_client.h"
18f86123d4738a875523df9d9c10143d766309cba3Robert Ginda
19f86123d4738a875523df9d9c10143d766309cba3Robert Gindanamespace buffet {
20f86123d4738a875523df9d9c10143d766309cba3Robert Ginda
21f86123d4738a875523df9d9c10143d766309cba3Robert Gindastd::unique_ptr<BluetoothClient> BluetoothClient::CreateInstance() {
22f86123d4738a875523df9d9c10143d766309cba3Robert Ginda  return std::unique_ptr<BluetoothClient>{new BluetoothClient};
23f86123d4738a875523df9d9c10143d766309cba3Robert Ginda}
24f86123d4738a875523df9d9c10143d766309cba3Robert Ginda
25f86123d4738a875523df9d9c10143d766309cba3Robert Ginda}  // namespace buffet
26