mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00: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()
|
||
|
|
{
|
||
|
|
}
|