summaryrefslogtreecommitdiffhomepage
path: root/options/connector.hpp
blob: b9b1259ff20e3661744aededad47eb304e940206 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#pragma once

#include <map>
#include <vector>
#include <QString>
#include <QMutex>
#include <QMutexLocker>

#include "export.hpp"

namespace options {

class base_value;

namespace detail {

class OPENTRACK_OPTIONS_EXPORT connector
{
    friend class ::options::base_value;

    std::map<QString, std::vector<const base_value*>> connected_values;

    void on_value_destructed(const QString& name, const base_value* val);
    void on_value_created(const QString& name, const base_value* val);
    bool on_value_destructed_impl(const QString& name, const base_value* val);

protected:
    void notify_values(const QString& name) const;
    void notify_all_values() const;
    virtual QMutex* get_mtx() const = 0;

public:
    connector();
    virtual ~connector();

    connector(const connector&) = default;
    connector& operator=(const connector&) = default;
    connector(connector&&) = default;
    connector& operator=(connector&&) = default;
};

}
}