efl/src/tests/eolian_cxx/simple.eo

20 lines
296 B
Plaintext

class Simple (Eo.Base)
{
legacy_prefix: null;
data: null;
methods {
simple_get {
return: bool;
}
name_get {
params {
@out name: const(char)*;
}
return: bool;
}
}
implements {
Eo.Base.constructor;
}
}