blob: f23ea64abb18f450ff7f2eceebbab5f73b263e9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef LH_CSS_MARGINS_H
#define LH_CSS_MARGINS_H
#include "css_length.h"
namespace litehtml
{
struct css_margins
{
css_length left;
css_length right;
css_length top;
css_length bottom;
css_margins() = default;
css_margins(const css_margins& val)
{
left = val.left;
right = val.right;
top = val.top;
bottom = val.bottom;
}
css_margins& operator=(const css_margins& val) = default;
string to_string() const
{
return "left: " + left.to_string() +
", right: " + right.to_string() +
", top: " + top.to_string() +
", bottom: " + bottom.to_string();
}
};
}
#endif // LH_CSS_MARGINS_H
|