summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-01-12 20:23:45 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2014-01-12 20:23:45 -0500
commit9c753dbaecae745019f588dad106aa0ce3adf716 (patch)
treee933b8afcc5a399a85da99b680c501b92b981fd8
parent2fc2df8c5ddb12dc3d0a25b0ea55e44cf1bf30a7 (diff)
use LIBEVORAL_TEMPLATE_API with Evoral::Note
-rw-r--r--libs/evoral/evoral/Note.hpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/libs/evoral/evoral/Note.hpp b/libs/evoral/evoral/Note.hpp
index 0effff10b9..dc6b374d36 100644
--- a/libs/evoral/evoral/Note.hpp
+++ b/libs/evoral/evoral/Note.hpp
@@ -33,7 +33,7 @@ namespace Evoral {
* Currently a note is defined as (on event, length, off event).
*/
template<typename Time>
-class /*LIBEVORAL_API*/ Note {
+class LIBEVORAL_TEMPLATE_API Note {
public:
Note(uint8_t chan=0, Time time=0, Time len=0, uint8_t note=0, uint8_t vel=0x40);
Note(const Note<Time>& copy);
@@ -116,7 +116,5 @@ template<typename Time>
return o;
}
-#include "../src/Note.impl"
-
#endif // EVORAL_NOTE_HPP