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

#include "graph/graph.h"

namespace cru::ui
{
    BorderProperty::BorderProperty(): BorderProperty(graph::CreateSolidBrush(D2D1::ColorF(D2D1::ColorF::Black)))
    {

    }

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

    }
}