1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 15:45:07 +00:00
serenity/LibHTML/CSS/StyleRule.cpp
2019-06-21 20:55:41 +02:00

11 lines
252 B
C++

#include <LibHTML/CSS/StyleRule.h>
StyleRule::StyleRule(Vector<Selector>&& selectors, Vector<NonnullRefPtr<StyleDeclaration>>&& declarations)
: m_selectors(move(selectors))
, m_declarations(move(declarations))
{
}
StyleRule::~StyleRule()
{
}