forked from OSchip/llvm-project
Added functionality to our API for SBType. This will allow users to eventually find and peruse static type information from modules.
llvm-svn: 110298
This commit is contained in:
parent
ba9fbbb880
commit
7620000aa6
|
@ -460,6 +460,15 @@ typedef enum LanguageType
|
||||||
} LanguageType;
|
} LanguageType;
|
||||||
|
|
||||||
|
|
||||||
|
typedef enum AccessType
|
||||||
|
{
|
||||||
|
eAccessNone,
|
||||||
|
eAccessPublic,
|
||||||
|
eAccessPrivate,
|
||||||
|
eAccessProtected,
|
||||||
|
eAccessPackage
|
||||||
|
} AccessType;
|
||||||
|
|
||||||
} // namespace lldb
|
} // namespace lldb
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue