Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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)
- Host: GitHub
- URL: https://github.com/jeremyletang/reflect
- Owner: jeremyletang
- License: mit
- Created: 2014-11-12T14:30:05.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2014-11-16T14:58:50.000Z (almost 10 years ago)
- Last Synced: 2023-07-31T14:58:48.869Z (over 1 year ago)
- Language: C++
- Homepage:
- Size: 186 KB
- Stars: 14
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
reflect
=======C++ reflection framework (for fun)
simple example:
```cpp
#includeint
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);
}```