mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-31 23:22:03 +03:00
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()
|
||
|
{
|
||
|
}
|