Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/cginternals/cppexpose

C++ library for type introspection, reflection, and scripting interface
https://github.com/cginternals/cppexpose

c-plus-plus c-plus-plus-11 introspection library reflection scripting

Last synced: 3 months ago
JSON representation

C++ library for type introspection, reflection, and scripting interface

Awesome Lists containing this project

README

        

[//]: # (Comment)


*cppexpose* is a cross-platform C++11 library that provides tools for introspection of types,
properties, and classes.

![GitHub release](https://img.shields.io/github/release/cginternals/cppexpose.svg)
[![Travis](https://img.shields.io/travis/cginternals/cppexpose/master.svg?style=flat&logo=travis)](https://travis-ci.org/cginternals/cppexpose)
[![Tokei](https://tokei.rs/b1/github/cginternals/cppexpose)](https://github.com/Aaronepower/tokei)
[![Tokei](https://tokei.rs/b1/github/cginternals/cppexpose?category=comments)](https://github.com/Aaronepower/tokei)

*cppexpose* allows for a C++ program to expose its interfaces into runtime, making it possible to, e.g., create automatic GUI representations for interfaces, or to expose them into a scripting environment.
The implementation is based on standard C++ templates and does not use language extensions
or macros, making it typesafe and usable with any C++11 compliant toolchain. Also, no meta
compilation step is required.