From 1cc8fe1e9826b9319d1f64cf6d463cbf7d49bcfa Mon Sep 17 00:00:00 2001 From: liuzicheng1987 Date: Fri, 15 Dec 2023 03:50:01 +0100 Subject: [PATCH] Add reflect-cpp (#1462) * Added reflect-cpp * Fixed typo * Removed duplicate entry; shortened description * Added dash --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7af0608..d953cd6 100644 --- a/README.md +++ b/README.md @@ -916,6 +916,7 @@ A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny * [meta](https://github.com/skypjack/meta) - Header-only, non-intrusive and macro-free runtime reflection system in C++. [MIT] * [Nameof](https://github.com/Neargye/nameof) - Header-only C++17 library provides nameof macros and functions to obtain the simple name of variable, type, function, macro, and enum. [MIT] * [Ponder](https://github.com/billyquith/ponder) - A C++11 library for reflection. [MIT] +* [reflect-cpp](https://github.com/getml/reflect-cpp) - Serialization through reflection, including automatic field name retrieval from structs. [MIT] * [RTTR](https://github.com/rttrorg/rttr) - A C++11 library for reflection. [MIT] [website](http://www.rttr.org) * [TSMP](https://github.com/fabian-jung/tsmp) - An intrusion and macro-free C++20 library for static reflection. It uses libclang to extract reflection data from your source code and makes it usable via template specialization. [MIT] * [visit_struct](https://github.com/cbeck88/visit_struct) - A miniature library for struct-field reflection in C++. [Boost]