mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-10 00:52:28 +02:00
11 lines
198 B
C++
11 lines
198 B
C++
#include <LibHTML/CSS/StyleDeclaration.h>
|
|
|
|
StyleDeclaration::StyleDeclaration(Vector<StyleProperty>&& properties)
|
|
: m_properties(move(properties))
|
|
{
|
|
}
|
|
|
|
StyleDeclaration::~StyleDeclaration()
|
|
{
|
|
}
|