Path: blob/main/contrib/llvm-project/lldb/tools/lldb-server/LLDBServerUtilities.h
34879 views
#ifndef LLDB_TOOLS_LLDB_SERVER_LLDBSERVERUTILITIES_H12#define LLDB_TOOLS_LLDB_SERVER_LLDBSERVERUTILITIES_H34//===-- LLDBServerUtilities.h -----------------------------------*- C++ -*-===//5//6// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.7// See https://llvm.org/LICENSE.txt for license information.8// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception9//10//===----------------------------------------------------------------------===//1112#include "llvm/ADT/StringRef.h"1314#include <string>1516namespace lldb_private {17namespace lldb_server {1819class LLDBServerUtilities {20public:21static bool SetupLogging(const std::string &log_file,22const llvm::StringRef &log_channels,23uint32_t log_options);24};25}26}2728#endif293031