1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 19:25:07 +00:00
serenity/LibHTML/CSS/Selector.cpp

10 lines
154 B
C++

#include <LibHTML/CSS/Selector.h>
Selector::Selector(Vector<Component>&& components)
: m_components(move(components))
{
}
Selector::~Selector()
{
}