blob: ce08685653331d396080433eaa2a5192f000a316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef INSTR_H
#define INSTR_H
#include <functional>
#include <map>
namespace instr
{
// clang-format off
extern const std::map<int,std::map<int,std::function<void(signed int &s1, signed int &s2, signed int &s3)>>> instr_map;
// clang-format on
} // namespace instr
#endif /* INSTR_H_INCLUDED */
|