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