OSDN Git Service

YAMML::IR::Note 追加
authorstarg <starg@users.osdn.me>
Sat, 16 Jul 2016 17:30:33 +0000 (02:30 +0900)
committerstarg <starg@users.osdn.me>
Sat, 23 Jul 2016 05:30:50 +0000 (14:30 +0900)
include/ir/note.hpp [new file with mode: 0644]

diff --git a/include/ir/note.hpp b/include/ir/note.hpp
new file mode 100644 (file)
index 0000000..0110a90
--- /dev/null
@@ -0,0 +1,23 @@
+
+#pragma once
+
+#include <midi/note.hpp>
+
+namespace YAMML
+{
+
+namespace IR
+{
+
+class Note final
+{
+public:
+    MIDI::NoteNumber Number;
+    int OnVelocity;
+    int Duration;
+    int OffVelocity;
+};
+
+} // namespace IR
+
+} // namespace YAMML