8 Rect() noexcept =
default;
9 Rect(
int width,
int height) noexcept;
10 Rect(
int x,
int y,
int width,
int height) noexcept;
12 void setX(
int x) noexcept { this->x = x; }
13 void setY(
int y) noexcept { this->y = y; }
17 int getX() const noexcept {
return x; }
18 int getY() const noexcept {
return y; }
19 int getWidth() const noexcept {
return width; }
31 #if __has_include(<format>)
33 #ifdef __cpp_lib_format
35 template <
typename CharT>
36 struct std::formatter<
av::Rect, CharT>
38 template<
typename ParseContext>
39 constexpr
auto parse(ParseContext& ctx)
43 template<
typename ParseContext>
44 auto format(
const av::Rect& value, ParseContext& ctx)
const
49 #endif // __cpp_lib_format
50 #endif // __has_include