mirror of
https://github.com/genodelabs/genode.git
synced 2025-04-08 20:05:54 +00:00
parent
c4e3d3dbc4
commit
4563baae77
@ -89,6 +89,12 @@ struct Text_area::Dialog : private Dynamic_rom_session::Xml_producer
|
||||
|
||||
Position(Position const &other) : x(other.x), y(other.y) { }
|
||||
|
||||
Position &operator = (Position const &other)
|
||||
{
|
||||
x = other.x, y = other.y;
|
||||
return *this;
|
||||
}
|
||||
|
||||
bool operator != (Position const &other) const
|
||||
{
|
||||
return (x.value != other.x.value) || (y.value != other.y.value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user