efl/src/tests/eolian_cxx/simple.eo

19 lines
266 B
Plaintext
Raw Normal View History

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