aboutsummaryrefslogtreecommitdiff
path: root/include/cru/ui/controls/IBorderControl.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/cru/ui/controls/IBorderControl.hpp')
-rw-r--r--include/cru/ui/controls/IBorderControl.hpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/cru/ui/controls/IBorderControl.hpp b/include/cru/ui/controls/IBorderControl.hpp
new file mode 100644
index 00000000..817305ef
--- /dev/null
+++ b/include/cru/ui/controls/IBorderControl.hpp
@@ -0,0 +1,10 @@
+#pragma once
+#include "../style/ApplyBorderStyleInfo.hpp"
+#include "Base.hpp"
+#include "cru/common/Base.hpp"
+
+namespace cru::ui::controls {
+struct IBorderControl : virtual Interface {
+ virtual void ApplyBorderStyle(const style::ApplyBorderStyleInfo& style) = 0;
+};
+} // namespace cru::ui::controls