Files
FreeJ/bindings/rbpost.i
Alex Norman 357750010c added some ruby code into the ruby swig module
this is sort of a hack but it works.. it evaulates a string [which
contains ruby code] using the ruby c api, when the Freej ruby module is
loaded.
Removed this identical code from the ruby test script and cleaned up the
scripts a bit
2009-06-19 15:27:06 -07:00

8 lines
134 B
OpenEdge ABL

%extend Layer {
void add_filter(Entry *filter_entry)
{
Filter *filter = (Filter*)filter_entry;
filter->apply(self);
}
}