diff options
Diffstat (limited to 'include/registry')
-rw-r--r-- | include/registry/types.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/registry/types.h b/include/registry/types.h index 6d87f84b4d9a..27eacb899967 100644 --- a/include/registry/types.h +++ b/include/registry/types.h @@ -298,37 +298,37 @@ enum RTParamMode { /** specifies the type of a reference used in a service description. */ -enum RTReferenceType { +enum class RTReferenceType { /// the reference type is unknown - RT_REF_INVALID, + INVALID, /** the service support the interface that means a implementation of this service must implement this interface. */ - RT_REF_SUPPORTS, + SUPPORTS, /** @deprecated the service observes the interface. */ - RT_REF_OBSERVES, + OBSERVES, /** the service exports the specified service that means this service provides also the specified service. */ - RT_REF_EXPORTS, + EXPORTS, /** @deprecated the service needs the specified service that means in the context of this service the specified service will be used or must be available. */ - RT_REF_NEEDS, + NEEDS, /** Indicates a type parameter of a polymorphic struct type template. @since UDK 3.2.0 */ - RT_REF_TYPE_PARAMETER + TYPE_PARAMETER }; #ifdef __cplusplus |