Loading...
Searching...
No Matches
Rectangle.h
Go to the documentation of this file.
1#ifndef RECTANGLE_H
2#define RECTANGLE_H
3
4#pragma once
5
9
10namespace ml
11{
43 class Rectangle : public Graphic<ml::RoundedRectangle>
44 {
45 public:
46 using Graphic::Graphic;
47 };
48
60 template<typename MANIFEST>
61 class RectangleWith : public Rectangle, public Customizable<MANIFEST> {};
62
63} // namespace ml
64
65#endif // RECTANGLE_H
A framework-integrated rectangle with optional rounded corners.
Definition Rectangle.h:44
Rectangle with an attached manifest.
Definition Rectangle.h:61
Definition Component.h:18