SkillAgentSearch skills...

Reflect

C++ reflection framework (for fun)

Install / Use

/learn @jeremyletang/Reflect
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

reflect

C++ reflection framework (for fun)

simple example:

#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);
}

View on GitHub
GitHub Stars14
CategoryDevelopment
Updated4y ago
Forks6

Languages

C++

Security Score

75/100

Audited on May 17, 2021

No findings