1 //
2 // Copyright 2017 Google, Inc.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at:
7 //
8 // http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 //
16
17 #include "bluetooth/remote_device_props.h"
18
19 using std::string;
20
21 namespace bluetooth {
22
23 RemoteDeviceProps::RemoteDeviceProps() = default;
24 RemoteDeviceProps::RemoteDeviceProps(const RemoteDeviceProps& other) = default;
RemoteDeviceProps(const std::string & name,const std::string & address,const std::vector<Uuid> & service_uuids,int32_t device_class,int32_t device_type,int32_t rssi)25 RemoteDeviceProps::RemoteDeviceProps(const std::string& name,
26 const std::string& address,
27 const std::vector<Uuid>& service_uuids,
28 int32_t device_class, int32_t device_type,
29 int32_t rssi)
30 : name_(name),
31 address_(address),
32 service_uuids_(service_uuids),
33 device_class_(device_class),
34 device_type_(device_type),
35 rssi_(rssi) {}
36 RemoteDeviceProps::~RemoteDeviceProps() = default;
37
38 } // namespace bluetooth
39