mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
11 lines
164 B
C++
11 lines
164 B
C++
#include <LibHTML/CSS/StyleSheet.h>
|
|
|
|
StyleSheet::StyleSheet(Vector<NonnullRefPtr<StyleRule>>&& rules)
|
|
: m_rules(move(rules))
|
|
{
|
|
}
|
|
|
|
StyleSheet::~StyleSheet()
|
|
{
|
|
}
|