blob: 6c0a914dcc340d8e0de9f70a37ff326232bd65ad [file] [log] [blame]
// Copyright 2018 The Fuchsia 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 SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_STATUS_H_
#define SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_STATUS_H_
#include <lib/fit/function.h>
#include "src/connectivity/bluetooth/core/bt-host/att/att.h"
#include "src/connectivity/bluetooth/core/bt-host/common/status.h"
namespace bt {
template <>
struct ProtocolErrorTraits<att::ErrorCode> {
static std::string ToString(att::ErrorCode ecode);
};
namespace att {
using Status = bt::Status<ErrorCode>;
// Copyable callback for reporting a Status.
using StatusCallback = fit::function<void(att::Status)>;
} // namespace att
} // namespace bt
#endif // SRC_CONNECTIVITY_BLUETOOTH_CORE_BT_HOST_ATT_STATUS_H_