Global Variables

To export global variables, use the Var construct:

    Var("myglobal", "foo.h")

Beware of non-const global variables: changes in Python won't reflect in C++! If you really must change them in Python, you will have to write some accessor functions, and export those.