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 { 17 public: 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_DWARFDebugMacinfo_h_ 30