mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-12 01:47:00 +02:00
11 lines
154 B
C++
11 lines
154 B
C++
#include <LibHTML/CSS/Selector.h>
|
|
|
|
Selector::Selector(Vector<Component>&& components)
|
|
: m_components(move(components))
|
|
{
|
|
}
|
|
|
|
Selector::~Selector()
|
|
{
|
|
}
|