| 1 | //! @file reflection.cpp |
|---|---|
| 2 | //! @author ryftchen |
| 3 | //! @brief The definitions (reflection) in the utility module. |
| 4 | //! @version 0.1.0 |
| 5 | //! @copyright Copyright (c) 2022-2025 ryftchen. All rights reserved. |
| 6 | |
| 7 | #include "reflection.hpp" |
| 8 | |
| 9 | namespace utility::reflection |
| 10 | { |
| 11 | //! @brief Function version number. |
| 12 | //! @return version number (major.minor.patch) |
| 13 | const char* version() noexcept |
| 14 | { |
| 15 | static const char* const ver = "0.1.0"; |
| 16 | return ver; |
| 17 | } |
| 18 | } // namespace utility::reflection |
| 19 |