DWARFDebugMacinfo.h revision 36da2aa6dc5ad9994b638ed09eb81c44cc05540b
1//===-- DWARFDebugMacinfo.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 SymbolFileDWARF_DWARFDebugLine_h_ 11#define SymbolFileDWARF_DWARFDebugLine_h_ 12 13#include "SymbolFileDWARF.h" 14 15class DWARFDebugMacinfo 16{ 17public: 18 DWARFDebugMacinfo(); 19 20 ~DWARFDebugMacinfo(); 21 22 static void 23 Dump (lldb_private::Stream *s, 24 const lldb_private::DataExtractor& macinfo_data, 25 lldb::offset_t offset = LLDB_INVALID_OFFSET); 26}; 27 28 29#endif // SymbolFileDWARF_DWARFDebugLine_h_ 30