-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAmpClippersBinding.cpp
More file actions
75 lines (51 loc) · 2.99 KB
/
Copy pathAmpClippersBinding.cpp
File metadata and controls
75 lines (51 loc) · 2.99 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <pybind11/pybind11.h>
#include <pybind11/stl.h>
#include <pybind11/numpy.h>
#include "AmpClippers.h"
#include "Circuit.h"
namespace py = pybind11;
PYBIND11_MODULE(AmpClippers, m) {
py::module_::import("CircuitProcessor");
py::class_<PointToPoint::AmpegB15Portaflex1A, PointToPoint::Circuit>(m, "AmpegB15Portaflex1A")
.def(py::init<>());
py::class_<PointToPoint::AmpegB15Portaflex1B, PointToPoint::Circuit>(m, "AmpegB15Portaflex1B")
.def(py::init<>());
py::class_<PointToPoint::AmpegB15Portaflex2A, PointToPoint::Circuit>(m, "AmpegB15Portaflex2A")
.def(py::init<>());
py::class_<PointToPoint::AmpegB15Portaflex2B, PointToPoint::Circuit>(m, "AmpegB15Portaflex2B")
.def(py::init<>());
py::class_<PointToPoint::AmpegB15Portaflex2C, PointToPoint::Circuit>(m, "AmpegB15Portaflex2C")
.def(py::init<>());
py::class_<PointToPoint::AmpegB15Portaflex2D, PointToPoint::Circuit>(m, "AmpegB15Portaflex2D")
.def(py::init<>());
py::class_<PointToPoint::BognerEcstasy1, PointToPoint::Circuit>(m, "BognerEcstasy1")
.def(py::init<>());
py::class_<PointToPoint::BognerEcstasy2A, PointToPoint::Circuit>(m, "BognerEcstasy2A")
.def(py::init<>());
py::class_<PointToPoint::BognerEcstasy2B, PointToPoint::Circuit>(m, "BognerEcstasy2B")
.def(py::init<>());
py::class_<PointToPoint::BognerEcstasy3, PointToPoint::Circuit>(m, "BognerEcstasy3")
.def(py::init<>());
py::class_<PointToPoint::FenderBassman100_1, PointToPoint::Circuit>(m, "FenderBassman100_1")
.def(py::init<>());
py::class_<PointToPoint::FenderBassman100_2A, PointToPoint::Circuit>(m, "FenderBassman100_2A")
.def(py::init<>());
py::class_<PointToPoint::FenderBassman100_2B, PointToPoint::Circuit>(m, "FenderBassman100_2B")
.def(py::init<>());
py::class_<PointToPoint::MarshallJCM800_2203_1A, PointToPoint::Circuit>(m, "MarshallJCM800_2203_1A")
.def(py::init<>());
py::class_<PointToPoint::RolandJazzChorus1, PointToPoint::Circuit>(m, "RolandJazzChorus1")
.def(py::init<>());
py::class_<PointToPoint::RolandJazzChorus2A, PointToPoint::Circuit>(m, "RolandJazzChorus2A")
.def(py::init<>());
py::class_<PointToPoint::RolandJazzChorus2B, PointToPoint::Circuit>(m, "RolandJazzChorus2B")
.def(py::init<>());
py::class_<PointToPoint::SoldanoSuperLead100_1, PointToPoint::Circuit>(m, "SoldanoSuperLead100_1")
.def(py::init<>());
py::class_<PointToPoint::SoldanoSuperLead100_2A, PointToPoint::Circuit>(m, "SoldanoSuperLead100_2A")
.def(py::init<>());
py::class_<PointToPoint::SoldanoSuperLead100_2B, PointToPoint::Circuit>(m, "SoldanoSuperLead100_2B")
.def(py::init<>());
py::class_<PointToPoint::VoxAC10, PointToPoint::Circuit>(m, "VoxAC10")
.def(py::init<>());
}