version 0.4.1
controlroutinebase.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
9#pragma once
13
14namespace Ikarus {
15
22template <typename F, typename S = ControlRoutineStateType<F>, typename... Args>
24 : public Broadcasters<void(ControlMessages), void(ControlMessages, const std::string&),
25 void(ControlMessages, int, const std::string&), void(ControlMessages, int, double),
26 void(ControlMessages, const S&), Args...>
27{
28 using State = S;
29};
30
31} // namespace Ikarus
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
State for all controlroutines.
Definition: assemblermanipulatorbuildingblocks.hh:22
Base for all control routines. Defines the message interface that can be broadcasted to listeners.
Definition: controlroutinebase.hh:27
S State
Definition: controlroutinebase.hh:28
Fuses together multiple function signatures that can be emitted by one broadcaster....
Definition: broadcaster.hh:81