1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-24 04:35:07 +00:00
serenity/LibHTML/CSS/StyleValue.cpp
2019-07-04 15:49:16 +02:00

10 lines
113 B
C++

#include "StyleValue.h"
StyleValue::StyleValue(Type type)
: m_type(type)
{
}
StyleValue::~StyleValue()
{
}