ladybird/Applications/VisualBuilder/VBProperty.cpp
Andreas Kling f52e66ceda VisualBuilder: Add a widget registry and a property class.
I need somewhere to centralize the knowledge about the different widget
types available. And VBProperty represents a property key/value of arbitrary
type (it uses a GVariant for the value.)
2019-04-11 16:13:19 +02:00

12 lines
166 B
C++

#include "VBProperty.h"
VBProperty::VBProperty(const String& name, const GVariant& value)
: m_name(name)
, m_value(value)
{
}
VBProperty::~VBProperty()
{
}