Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | //===-- 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 | |
| 21 | class DynamicLoaderMacOSXDYLDLog |
| 22 | { |
| 23 | public: |
| 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_ |