* more pleasant template parameter names in (MIDI)Event
[ardour.git] / libs / evoral / src / MIDIEvent.cpp
index aa87847afc7e8344ac589bdad43d629be59054fd..cc0b00ec0dd9f2747d701539b8b7f203115cebfc 100644 (file)
@@ -28,9 +28,9 @@ namespace Evoral {
 
 #ifdef EVORAL_MIDI_XML
 
-template<typename T>
-MIDIEvent<T>::MIDIEvent(const XMLNode& event) 
-  : Event<T>()
+template<typename Timestamp>
+MIDIEvent<Timestamp>::MIDIEvent(const XMLNode& event) 
+  : Event<Timestamp>()
 {
        string name = event.name();
        
@@ -51,9 +51,9 @@ MIDIEvent<T>::MIDIEvent(const XMLNode& event)
 }
 
 
-template<typename T>
+template<typename Timestamp>
 boost::shared_ptr<XMLNode> 
-MIDIEvent<T>::to_xml() const
+MIDIEvent<Timestamp>::to_xml() const
 {
        XMLNode *result = 0;