mirror of
https://github.com/dyne/FreeJ.git
synced 2026-02-12 07:40:57 +01:00
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
8 lines
134 B
OpenEdge ABL
8 lines
134 B
OpenEdge ABL
%extend Layer {
|
|
void add_filter(Entry *filter_entry)
|
|
{
|
|
Filter *filter = (Filter*)filter_entry;
|
|
filter->apply(self);
|
|
}
|
|
}
|