blob: f09fb88f58f3a5ad3fbfb237e24693cd31fb0eb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#pragma once
#include <string>
#include <map>
#include <vector>
namespace midi_router
{
using Device_Id = std::string;
using Device_Map = std::map<std::string, Device_Id>;
using Target_List = std::vector<Device_Id>;
using Route_Map = std::map<Device_Id, Target_List>;
} // namespace midi_router
|