mirror of
https://github.com/dyne/FreeJ.git
synced 2026-06-09 00:49:56 +02:00
17 lines
239 B
OpenEdge ABL
17 lines
239 B
OpenEdge ABL
%extend Linklist
|
|
{
|
|
Entry *search(const char* what)
|
|
{
|
|
return self->search((char*)what,0);
|
|
}
|
|
}
|
|
|
|
%extend Layer {
|
|
void add_filter(Entry *filter_entry)
|
|
{
|
|
Filter *filter = (Filter*)filter_entry;
|
|
filter->apply(self);
|
|
}
|
|
}
|
|
|