openbox/wrap/ob_python.i
Dana Jansens c217a73090 split the ob module into separate .i's
cleanly define the interface, add functions for modifying the objects (via client messages)
2003-02-17 15:42:31 +00:00

18 lines
269 B
OpenEdge ABL

// -*- mode: C++; indent-tabs-mode: nil; c-basic-offset: 2; -*-
%module ob_python
%{
#include "config.h"
#include "python.hh"
%}
namespace ob {
%ignore python_init(char*);
%ignore python_destroy();
%ignore python_exec(const std::string &);
}
%include "python.hh"