Hi!
It’s will be cool if I can be use typedef
and using
keywords for my types and use them in reflection system (with UFUNCTION
and UPROPERTY
macros).
Error in UHT will be occurred if I tries this
I expected the following options:
-
typedef [existing type] FNewType
(type alias) -
using FNewType = [existing type]
(type alias too) -
template<<>typename T> using FNewType = [existing type]<<>T>;
(more complex type alias, for example type from specified class namespace)
Thanks! Cheers!