blob: ec96fe6cf5cf68d6371e89fb03740cfa09070c99 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
 | #include "base-value.hpp"
using namespace options;
value_::value_(bundle const& b, const QString& name) :
    b(b), self_name(name)
{
    b->on_value_created(this);
}
value_::~value_()
{
    b->on_value_destructed(this);
}
void value_::notify() const
{
    bundle_value_changed();
}
namespace options::detail {
void set_value_to_default(value_* val)
{
    val->set_to_default();
}
} // ns options::detail
 |