mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 19:15:08 +00:00
10 lines
164 B
C++
10 lines
164 B
C++
#include <LibHTML/CSS/StyleSheet.h>
|
|
|
|
StyleSheet::StyleSheet(Vector<NonnullRefPtr<StyleRule>>&& rules)
|
|
: m_rules(move(rules))
|
|
{
|
|
}
|
|
|
|
StyleSheet::~StyleSheet()
|
|
{
|
|
}
|