1061da546Spatrick //===-- OsLogger.h ----------------------------------------------*- C++ -*-===// 2061da546Spatrick // 3061da546Spatrick // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4061da546Spatrick // See https://llvm.org/LICENSE.txt for license information. 5061da546Spatrick // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6061da546Spatrick // 7061da546Spatrick //===----------------------------------------------------------------------===// 8061da546Spatrick 9*dda28197Spatrick #ifndef LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_OSLOGGER_H 10*dda28197Spatrick #define LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_OSLOGGER_H 11061da546Spatrick 12061da546Spatrick #include "DNBDefs.h" 13061da546Spatrick 14061da546Spatrick class OsLogger { 15061da546Spatrick public: 16061da546Spatrick static DNBCallbackLog GetLogFunction(); 17061da546Spatrick }; 18061da546Spatrick 19*dda28197Spatrick #endif // LLDB_TOOLS_DEBUGSERVER_SOURCE_MACOSX_OSLOGGER_H 20