]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/lldb/tools/lldb-server/LLDBServerUtilities.h
Update to zstd 1.3.2
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / lldb / tools / lldb-server / LLDBServerUtilities.h
1 //===-- LLDBServerUtilities.h -----------------------------------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 #include "llvm/ADT/StringRef.h"
11
12 #include <string>
13
14 namespace lldb_private {
15 namespace lldb_server {
16
17 class LLDBServerUtilities {
18 public:
19   static bool SetupLogging(const std::string &log_file,
20                            const llvm::StringRef &log_channels,
21                            uint32_t log_options);
22 };
23 }
24 }