10#include "Refureku/TypeInfo/Functions/FunctionBase.h"
11#include "Refureku/TypeInfo/Functions/EMethodFlags.h"
33 RFK_NODISCARD REFUREKU_API
bool isStatic() const noexcept;
40 RFK_NODISCARD REFUREKU_API
bool isInline() const noexcept;
47 RFK_NODISCARD REFUREKU_API
bool isVirtual() const noexcept;
62 RFK_NODISCARD REFUREKU_API
bool isOverride() const noexcept;
70 RFK_NODISCARD REFUREKU_API
bool isFinal() const noexcept;
77 RFK_NODISCARD REFUREKU_API
bool isConst() const noexcept;
91 RFK_NODISCARD REFUREKU_API EAccessSpecifier
getAccess() const noexcept;
100 REFUREKU_INTERNAL
MethodBase(MethodBaseImpl* implementation) noexcept;
104 RFK_GEN_GET_PIMPL(MethodBaseImpl,
Entity::getPimpl())
Definition: FunctionBase.h:17
Definition: MethodBase.h:16
RFK_NODISCARD REFUREKU_API bool isPureVirtual() const noexcept
Check if this method is pure virtual.
RFK_NODISCARD REFUREKU_API bool isOverride() const noexcept
Check if this method is override-qualified. WARNING: An overriding method not explicitly qualified wi...
RFK_NODISCARD REFUREKU_API bool hasSameSignature(MethodBase const &other) const noexcept
Check that another function has the same prototype as this function. WARNING: Non reflected type arch...
RFK_NODISCARD REFUREKU_API bool isConst() const noexcept
Check if this method is const-qualified.
RFK_NODISCARD REFUREKU_API bool isStatic() const noexcept
Check if this method is static.
RFK_NODISCARD REFUREKU_API bool isFinal() const noexcept
Check if this method is final-qualified. WARNING: An override method part of a final class will retur...
RFK_NODISCARD REFUREKU_API bool isVirtual() const noexcept
Check if this method is virtual.
RFK_NODISCARD REFUREKU_API bool isInline() const noexcept
Check if this method is marked with the inline qualifier or defined in the header file.
RFK_NODISCARD REFUREKU_API EAccessSpecifier getAccess() const noexcept
Get the access specifier of this method in its owner struct/class.
RFK_NODISCARD bool hasSameSignature() const noexcept
Check whether 2 functions have the same signature. Non reflected types are compared equal,...
RFK_NODISCARD REFUREKU_API EMethodFlags getFlags() const noexcept
Get the flags qualifying this method.
Definition: Allocator.h:16
EMethodFlags
Definition: EMethodFlags.h:17