blob: f8f2f88dc75e546d6d641b3b399e8555574dd525 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "../style/ApplyBorderStyleInfo.h"
#include "cru/common/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
|