KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
reflect
★ 14
Open GitHub ↗
C++ reflection framework (for fun)
Download README (.md)
Explore Similar Repositories
node-github-cache
:
Provides transparent caching for node-github api calls
mathjax.everyx.in
:
Source code of mathjax.everyx.in - a mathjax image generate api service.
TeamcityTriggerHook
:
Bitbucket Plugin to Trigger Builds in Teamcity
gruntgen
:
The easy and fast way to setup your grunt tasks.
limitlessled-bash
:
command line control over limitlessLED lights
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
reflect
?
Download (.md)
reflect ======= C++ reflection framework (for fun) simple example: ```cpp #include <reflect/reflect> 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); } ```