EchoMap 2026-07-25 6d3977c
An experimental cross-platform digital signal processing application for sound-source localisation.
Loading...
Searching...
No Matches
AddChannelMappingNotification.hpp
Go to the documentation of this file.
1
9
10#ifndef ECHOMAP_ADDCHANNELMAPPINGNOTIFICATION_HPP
11#define ECHOMAP_ADDCHANNELMAPPINGNOTIFICATION_HPP
12
14
15namespace echomap
16{
17
18class Project;
19
26{
36 id_type project_id,
37 id_type signal_id,
38 id_type sensor_id
39 );
40
47 void verify_project(const Project* context) const;
48
49 id_type project_id;
50 id_type signal_id;
51 id_type sensor_id;
52};
53
54} // namespace echomap
55
56#endif // ECHOMAP_ADDCHANNELMAPPINGNOTIFICATION_HPP
IDAllocator specification.
The main EchoMap outermost namespace for all non-exported symbols.
void verify_project(const Project *context) const
Verify that the given Project matches the intended target.
AddChannelMappingNotification(id_type project_id, id_type signal_id, id_type sensor_id)
Create a new AddChannelMappingNotification to indicate that the Signal and Sensor within a Project sh...
id_type project_id
The ID of the Project detaining the Signal and Sensor.
id_type signal_id
The ID of the participating Signal.
id_type sensor_id
The ID of the participating Sensor.