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