blob: abce1daf51ec511436d1feac94d5d250e4159983 (
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
|
/* Copyright (c) 2014-2015, Stanislaw Halik <sthalik@misaki.pl>
* Permission to use, copy, modify, and/or distribute this
* software for any purpose with or without fee is hereby granted,
* provided that the above copyright notice and this permission
* notice appear in all copies.
*/
#pragma once
#include "options/options.hpp"
#include "api/plugin-support.hpp"
#include "main-settings.hpp"
#include "mappings.hpp"
#include "extensions.hpp"
#include "work.hpp"
#include "export.hpp"
#include <memory>
#include <QString>
struct OTR_LOGIC_EXPORT State
{
using dylib_ptr = Modules::dylib_ptr;
using dylib_list = Modules::dylib_list;
explicit State(const QString& library_path);
static std::tuple<dylib_ptr, int> module_by_name(const QString& name, dylib_list& list);
dylib_ptr current_tracker();
dylib_ptr current_protocol();
dylib_ptr current_filter();
Modules modules;
event_handler ev;
main_settings s;
module_settings m;
Mappings pose;
std::shared_ptr<Work> work;
};
|