summaryrefslogtreecommitdiff
path: root/include/registry
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-04-08 15:36:06 +0200
committerNoel Grandin <noel@peralex.com>2015-04-09 08:41:11 +0200
commit68b35c75588f5702a142c8232d5e805bfe276c72 (patch)
tree9574ddac4d603715b04bed6c1c470d419b6b7a64 /include/registry
parente2931bce34a274167da52792d07b19743d488aa0 (diff)
convert RTReferenceType to scoped enum
Change-Id: I8320f6f42d5579fbd09450ddca61c4c066de98e4
Diffstat (limited to 'include/registry')
-rw-r--r--include/registry/types.h14
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