aboutsummaryrefslogtreecommitdiff
path: root/src/ui/border_property.cpp
blob: bd06a96ad209df5d1b47365a6f759b37e1696cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include "border_property.hpp"

#include "predefine.hpp"

namespace cru::ui
{
    BorderProperty::BorderProperty(): BorderProperty(predefine::GetPredefineResourceComPtr<ID2D1Brush>(predefine::key_border_property_brush))
    {

    }

    BorderProperty::BorderProperty(Microsoft::WRL::ComPtr<ID2D1Brush> brush): brush_(std::move(brush))
    {

    }
}