~lalo.martins/vos/s5-scripting

« back to all changes in this revision

Viewing changes to libs/vos/python/vosmodule.cc

  • Committer: Lalo Martins
  • Date: 2006-12-25 02:49:55 UTC
  • Revision ID: lalo@interreality.org-20061225024955-3d765f8a9ff3f319
baby-steps of interface (vostype) binding

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#include "kernel.hh"
2
2
#include "vobject.hh"
3
3
#include "site.hh"
 
4
#include "interface.hh"
4
5
 
5
6
using namespace VOS::Python::internal;
6
7
 
16
17
    PyObject* vosmodule = Py_InitModule("vos", VosMethods);
17
18
    initialize_vobjectWrapper(vosmodule);
18
19
    initialize_siteWrapper(vosmodule);
 
20
    initialize_interfaceWrapper(vosmodule);
19
21
}