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()
|
|
{
|
|
}
|