enum ObjCDeclSpec::ObjCDeclQualifier

Description

ObjCDeclQualifier - Qualifier used on types in method declarations. Not all combinations are sensible. Parameters can be one of { in, out, inout } with one of { bycopy, byref }. Returns can either be { oneway } or not. This should be kept in sync with Decl::ObjCDeclQualifier.

Declared at: clang/include/clang/Sema/DeclSpec.h:831

Enumerators

NameValueComment
DQ_None0
DQ_In1
DQ_Inout2
DQ_Out4
DQ_Bycopy8
DQ_Byref16
DQ_Oneway32
DQ_CSNullability64