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

32 lines
611 B
Plaintext

class Example.Rectangle extends Efl.Object implements Example.Shape, Example.Colored {
[[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]]
}
}
}
implements {
Example.Shape.area;
}
}