blob: e3eb3388a4507b4395cbd460385384bd210dfdb1 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "../style/ApplyBorderStyleInfo.h"
#include "cru/base/Base.h"
namespace cru::ui::controls {
struct CRU_UI_API IBorderControl : virtual Interface {
virtual void ApplyBorderStyle(const style::ApplyBorderStyleInfo& style) = 0;
};
} // namespace cru::ui::controls
|