Skip to content

dinibu/ponder

 
 

Repository files navigation

Ponder

Linux & OSX: Build Status - Windows: Build status

About

Ponder is a C++ multi-purpose reflection library. It provides an abstraction for most of the high-level concepts of C++:

  • Classes
  • Enumerations
  • Functions
  • Objects
  • Properties
  • Variables

By wrapping all these concepts into abstract structures, Ponder provides an extra layer of flexibility to programs, and allow them to fully expose their data structures at runtime.

Many applications can take advantage of Ponder, in order to automate tasks which would otherwise require a huge amount of work. For example, Ponder can be used to expose and edit objects' attributes into a graphical user interface. It can also be used to do automatic binding of C++ classes to script languages such as Python or Lua. Another possible application would be the serialization of objects to XML, text or binary formats. Or you can even combine all these examples to provide a powerful and consistent interface for manipulating your objects outside C++ code.

Links

Build

Ponder uses CMake to generate project files. E.g. Use Ninja to build Ponder:

git clone https://github.com/billyquith/ponder.git
cd ponder
mkdir build && cd build
cmake -G Ninja ..
ninja

History

Ponder is a fork of CAMP, which has been retired by the original authors. CAMP relies on Boost, and is pre-C++11. In Ponder, the Boost dependency has been removed, and instead, C++11 features are used. CAMP was developed by Technogerma Systems France and then by Tegesoft.

Packages

No packages published

Languages

  • C++ 97.4%
  • CMake 2.6%