openMSX
MidiSessionALSA.hh
Go to the documentation of this file.
1#ifndef MIDISESSIONALSA_HH
2#define MIDISESSIONALSA_HH
3
4#include <alsa/asoundlib.h>
5#include <memory>
6
7
8namespace openmsx {
9
10class CliComm;
11class EventDistributor;
12class Scheduler;
13class PluggingController;
14
15
18class MidiSessionALSA final
19{
20public:
21 static void registerAll(PluggingController& controller, CliComm& cliComm,
22 EventDistributor& eventDistributor, Scheduler& scheduler);
23
25
26private:
27 static std::unique_ptr<MidiSessionALSA> instance;
28
29 explicit MidiSessionALSA(snd_seq_t& seq);
30 void scanClients(PluggingController& controller,
31 EventDistributor& eventDistributor,
32 Scheduler& scheduler);
33
34 snd_seq_t& seq;
35};
36
37} // namespace openmsx
38
39#endif // MIDISESSIONALSA_HH
Lists ALSA MIDI ports we can connect to.
static void registerAll(PluggingController &controller, CliComm &cliComm, EventDistributor &eventDistributor, Scheduler &scheduler)
Central administration of Connectors and Pluggables.
This file implemented 3 utility functions:
Definition Autofire.cc:9