blob: 9282ba5764710e40e9f59b81cfbc79be777caed8 [file] [log] [blame]
Chris Lattner24943d22010-06-08 16:52:24 +00001//===-- DynamicLoaderMacOSXDYLDLog.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#ifndef liblldb_DynamicLoaderMacOSXDYLDLog_h_
11#define liblldb_DynamicLoaderMacOSXDYLDLog_h_
12
13// C Includes
14// C++ Includes
15// Other libraries and framework includes
16
17#include "lldb/lldb-private.h"
18
19// Project includes
20
21class DynamicLoaderMacOSXDYLDLog
22{
23public:
24 static lldb_private::Log *
25 GetLogIfAllCategoriesSet (uint32_t mask);
26
27 static void
28 SetLog (lldb_private::Log *log);
29
30 static void
31 LogIf (uint32_t mask, const char *format, ...);
32};
33
34#endif // liblldb_DynamicLoaderMacOSXDYLDLog_h_