From 68b35c75588f5702a142c8232d5e805bfe276c72 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 8 Apr 2015 15:36:06 +0200 Subject: convert RTReferenceType to scoped enum Change-Id: I8320f6f42d5579fbd09450ddca61c4c066de98e4 --- include/registry/types.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'include/registry') 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 -- cgit