keyword
C++ Specific
#pragma keyword("interface | super", on|off)
Specifies whether the __interface or __super keywords will be recognized without two leading underscores.
By default, super and interface are not recognized without the two underscores. For example, the default setting is:
#pragma keyword("interface", off)
This allows you to define and use the name interface
.