diff options
Diffstat (limited to 'include/clang/Driver/Types.h')
-rw-r--r-- | include/clang/Driver/Types.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/clang/Driver/Types.h b/include/clang/Driver/Types.h index 9d2313c62b..92520a77b3 100644 --- a/include/clang/Driver/Types.h +++ b/include/clang/Driver/Types.h @@ -56,6 +56,12 @@ namespace types { /// types). bool canLipoType(ID Id); + /// isAcceptedByClang - Can clang handle this input type. + bool isAcceptedByClang(ID Id); + + /// isCXX - Is this a "C++" input (C++ and Obj-C++ sources and headers). + bool isCXX(ID Id); + /// lookupTypeForExtension - Lookup the type to use for the file /// extension \arg Ext. ID lookupTypeForExtension(const char *Ext); |