wiki:Langbinding

Langbinding

In thinking about how to design, and implement the various aspect of Langbinding I kept going back to some of the same concepts that make up the Common Lisp MOP class system. The key goal for Langbinding is to describe types, and interfaces for those types, as data structures. Unlike the Lisp MOP the interfaces can't be dynamic in the same way in C/C++, but at minimum we can create ad hoc descriptions but only to static code. The goal being to create a bridge between dynamic languages and C++. The basic components of such a bridge are:

  • A description the interfaces and data, the binding.
  • An instance of the binding for a particular language.

Langbinding is split into a set of components that work together to implement those two components:

Development:

Last modified 15 years ago Last modified on Aug 11, 2007, 3:11:38 PM
Note: See TracWiki for help on using the wiki.