//===-- LLDBLog.h -----------------------------------------------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #ifndef LLDB_UTILITY_LLDBLOG_H #define LLDB_UTILITY_LLDBLOG_H #include "lldb/Utility/Log.h" #include "llvm/ADT/BitmaskEnum.h" #include <cstdint> namespace lldb_private { enum class LLDBLog : Log::MaskType { … }; LLVM_ENABLE_BITMASK_ENUMS_IN_NAMESPACE(…); void InitializeLldbChannel(); template <> Log::Channel &LogChannelFor<LLDBLog>(); } // namespace lldb_private #endif // LLDB_UTILITY_LLDBLOG_H