summaryrefslogtreecommitdiff
path: root/include/lldb/API/SBSection.h
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2013-06-13 21:23:23 +0000
committerGreg Clayton <gclayton@apple.com>2013-06-13 21:23:23 +0000
commitba3ebe1d3e6d13c42f7e35ff715431573af65681 (patch)
treef39365e14fc8a865a5512f67e460d25e651d6ef4 /include/lldb/API/SBSection.h
parentd315f7d9d0626e3c4ab3e59dc312e9b35228d501 (diff)
Added a SBSection::GetParent() to the API.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@183948 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/lldb/API/SBSection.h')
-rw-r--r--include/lldb/API/SBSection.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/lldb/API/SBSection.h b/include/lldb/API/SBSection.h
index d1b127f17..3386484f6 100644
--- a/include/lldb/API/SBSection.h
+++ b/include/lldb/API/SBSection.h
@@ -33,7 +33,10 @@ public:
const char *
GetName ();
-
+
+ lldb::SBSection
+ GetParent();
+
lldb::SBSection
FindSubSection (const char *sect_name);
@@ -77,6 +80,7 @@ public:
bool
GetDescription (lldb::SBStream &description);
+
private:
friend class SBAddress;