diff --git a/src/direction_type.h b/src/direction_type.h --- a/src/direction_type.h +++ b/src/direction_type.h @@ -42,7 +42,7 @@ DECLARE_POSTFIX_INCREMENT(Direction) /** Define basic enum properties */ template <> struct EnumPropsT : MakeEnumPropsT {}; -typedef TinyEnumT DirectionByte; // typedefing-enumification of Direction +typedef TinyEnumT DirectionByte; ///< typedefing-enumification of Direction /** @@ -92,7 +92,7 @@ DECLARE_POSTFIX_INCREMENT(DiagDirection) /** Define basic enum properties */ template <> struct EnumPropsT : MakeEnumPropsT {}; -typedef TinyEnumT DiagDirectionByte; // typedefing-enumification of DiagDirection +typedef TinyEnumT DiagDirectionByte; ///< typedefing-enumification of DiagDirection /** @@ -130,6 +130,7 @@ enum Axis { AXIS_END, ///< Used for iterations INVALID_AXIS = 0xFF, ///< Flag for an invalid Axis }; +/** Helper information for extract tool. */ template <> struct EnumPropsT : MakeEnumPropsT {}; #endif /* DIRECTION_TYPE_H */