EchoMap 2026-07-25 6d3977c
An experimental cross-platform digital signal processing application for sound-source localisation.
Loading...
Searching...
No Matches
StaticInstanceController.cpp
Go to the documentation of this file.
1
9
11
12#include <sigc++/sigc++.h>
13
14#include "EchoMap.hpp"
16
17namespace echomap
18{
19
20StaticInstanceController::StaticInstanceController(
21 EchoMap& app
22)
23{
24 ActionController::bind(sigc::mem_fun(app, &EchoMap::notify));
25}
26
27StaticInstanceController::~StaticInstanceController() noexcept
28{
30}
31
32} // namespace echomap
ActionController specification.
EchoMap class specification.
StaticInstanceController specification.
The EchoMap maintains state for the application including WebGPU and Dear ImGui context,...
Definition EchoMap.hpp:35
void notify(const Notification &notification)
Submit a new Notification to the application queue.
Definition EchoMap.cpp:604
The main EchoMap outermost namespace for all non-exported symbols.