Files
clang-p2996/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/DynamicLoaderMacOSXDYLDLog.h
2010-06-08 16:52:24 +00:00

35 lines
857 B
C++

//===-- DynamicLoaderMacOSXDYLDLog.h ----------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef liblldb_DynamicLoaderMacOSXDYLDLog_h_
#define liblldb_DynamicLoaderMacOSXDYLDLog_h_
// C Includes
// C++ Includes
// Other libraries and framework includes
#include "lldb/lldb-private.h"
// Project includes
class DynamicLoaderMacOSXDYLDLog
{
public:
static lldb_private::Log *
GetLogIfAllCategoriesSet (uint32_t mask);
static void
SetLog (lldb_private::Log *log);
static void
LogIf (uint32_t mask, const char *format, ...);
};
#endif // liblldb_DynamicLoaderMacOSXDYLDLog_h_