Fix the case of jump-to-next-Subdivision
[ardour.git] / libs / evoral / evoral / EventSink.hpp
index 3c44095816ae833e9fde799d48cacb532c64ea8f..fa8b2ef05f7cf134e0cf68c66a79f4a28fba6b1b 100644 (file)
@@ -1,5 +1,5 @@
 /* This file is part of Evoral.
- * Copyright (C) 2008 Dave Robillard <http://drobilla.net>
+ * Copyright (C) 2008 David Robillard <http://drobilla.net>
  * Copyright (C) 2000-2008 Paul Davis
  *
  * Evoral is free software; you can redistribute it and/or modify it under the
 #ifndef EVORAL_EVENT_SINK_HPP
 #define EVORAL_EVENT_SINK_HPP
 
+#include "evoral/visibility.h"
 #include "evoral/types.hpp"
 
 namespace Evoral {
 
-
 /** Pure virtual base for anything you can write events to.
  */
 template<typename Time>
-class EventSink {
+class /*LIBEVORAL_API*/ EventSink {
 public:
        virtual ~EventSink() {}
        virtual uint32_t write(Time time, EventType type, uint32_t size, const uint8_t* buf) = 0;