summaryrefslogtreecommitdiffhomepage
path: root/options/base-value.cpp
blob: d4ec4b6c0b18fe0c4c41e0f1f60213432aa9b25e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "base-value.hpp"

using namespace options;

value_::value_(bundle const& b, const QString& name) noexcept :
    b(b), self_name(name)
{
    b->on_value_created(this);
}

value_::~value_()
{
    b->on_value_destructed(this);
}