mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-08 12:19:37 +03:00
f52e66ceda
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.)
12 lines
166 B
C++
12 lines
166 B
C++
#include "VBProperty.h"
|
|
|
|
VBProperty::VBProperty(const String& name, const GVariant& value)
|
|
: m_name(name)
|
|
, m_value(value)
|
|
{
|
|
}
|
|
|
|
VBProperty::~VBProperty()
|
|
{
|
|
}
|