blob: 817305ef233c2e203fbe6deb619902595f08e789 (
plain)
1
2
3
4
5
6
7
8
9
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
|