use LIBEVORAL_TEMPLATE_API with Evoral::Note

This commit is contained in:
Paul Davis 2014-01-12 20:23:45 -05:00
parent 2fc2df8c5d
commit 9c753dbaec

View file

@ -33,7 +33,7 @@ namespace Evoral {
* Currently a note is defined as (on event, length, off event). * Currently a note is defined as (on event, length, off event).
*/ */
template<typename Time> template<typename Time>
class /*LIBEVORAL_API*/ Note { class LIBEVORAL_TEMPLATE_API Note {
public: public:
Note(uint8_t chan=0, Time time=0, Time len=0, uint8_t note=0, uint8_t vel=0x40); Note(uint8_t chan=0, Time time=0, Time len=0, uint8_t note=0, uint8_t vel=0x40);
Note(const Note<Time>& copy); Note(const Note<Time>& copy);
@ -116,7 +116,5 @@ template<typename Time>
return o; return o;
} }
#include "../src/Note.impl"
#endif // EVORAL_NOTE_HPP #endif // EVORAL_NOTE_HPP