Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/jeremyletang/reflect

C++ reflection framework (for fun)
https://github.com/jeremyletang/reflect

Last synced: 25 days ago
JSON representation

C++ reflection framework (for fun)

Awesome Lists containing this project

README

        

reflect
=======

C++ reflection framework (for fun)

simple example:

```cpp
#include

int
main() {
rf::class_t clss = rf::class_t::for_name("hello_t");
rf::object_t object = clss.new_instance();
rf::method_t method = clss.get_method("say_hello");
method.invoke(object);
}

```