aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/SMFDriver.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine/SMFDriver.hpp')
-rw-r--r--src/engine/SMFDriver.hpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/engine/SMFDriver.hpp b/src/engine/SMFDriver.hpp
index f978849..abed40d 100644
--- a/src/engine/SMFDriver.hpp
+++ b/src/engine/SMFDriver.hpp
@@ -34,7 +34,9 @@ namespace Machina {
class Node;
class Machine;
-class SMFDriver : public Driver {
+class SMFDriver
+ : public Driver
+{
public:
SMFDriver(Raul::Forge& forge, Raul::TimeUnit unit);
@@ -54,8 +56,8 @@ public:
const unsigned char* ev) throw (std::logic_error)
{ _writer->write_event(time, ev_size, ev); }
- void set_bpm(double /*bpm*/) { }
- void set_quantization(double /*quantization*/) { }
+ void set_bpm(double /*bpm*/) {}
+ void set_quantization(double /*quantization*/) {}
SharedPtr<SMFWriter> writer() { return _writer; }
@@ -72,4 +74,3 @@ private:
} // namespace Machina
#endif // MACHINA_SMFDRIVER_HPP
-