/* Copyright (c) 2014-2015, Stanislaw Halik * 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 #include 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 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; };