blob: c6eac794bae9b1c6d7c246552e511f31bd38a06c [file] [log] [blame]
//===-- SBCompileUnit.h -----------------------------------------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef LLDB_SBCompileUnit_h_
#define LLDB_SBCompileUnit_h_
#include "lldb/API/SBDefines.h"
#include "lldb/API/SBFileSpec.h"
namespace lldb {
class SBCompileUnit
{
public:
SBCompileUnit ();
SBCompileUnit (const lldb::SBCompileUnit &rhs);
~SBCompileUnit ();
#ifndef SWIG
const lldb::SBCompileUnit &
operator = (const lldb::SBCompileUnit &rhs);
#endif
bool
IsValid () const;
lldb::SBFileSpec
GetFileSpec () const;
uint32_t
GetNumLineEntries () const;
lldb::SBLineEntry
GetLineEntryAtIndex (uint32_t idx) const;
uint32_t
FindLineEntryIndex (uint32_t start_idx,
uint32_t line,
lldb::SBFileSpec *inline_file_spec) const;
#ifndef SWIG
bool
operator == (const lldb::SBCompileUnit &rhs) const;
bool
operator != (const lldb::SBCompileUnit &rhs) const;
#endif
bool
GetDescription (lldb::SBStream &description);
private:
friend class SBFrame;
friend class SBSymbolContext;
SBCompileUnit (lldb_private::CompileUnit *lldb_object_ptr);
#ifndef SWIG
const lldb_private::CompileUnit *
operator->() const;
const lldb_private::CompileUnit &
operator*() const;
const lldb_private::CompileUnit *
get () const;
void
reset (lldb_private::CompileUnit *lldb_object_ptr);
#endif
lldb_private::CompileUnit *m_opaque_ptr;
};
} // namespace lldb
#endif // LLDB_SBCompileUnit_h_