examples/tutorial/c/eo-inherit/src/example_rectangle.eo

35 lines
637 B
Plaintext

class Example.Rectangle extends Efl.Object {
[[A rectangle shape object
@since 1.00
]]
methods {
@property width {
[[The width of this rectangle]]
set {
}
get {
}
values {
width: int; [[Rectangle width]]
}
}
@property height {
[[The height of this rectangle]]
set {
}
get {
}
values {
height: int; [[Rectangle height]]
}
}
area {
[[Calculate the area of the shape.]]
params {
}
return: int;
}
}
}