mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 13:15:44 +01:00
* Code readability: Template parameter <T> -> <Time>
git-svn-id: svn://localhost/ardour2/branches/3.0@4521 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
7666413e18
commit
494e7feec6
12 changed files with 218 additions and 218 deletions
|
|
@ -28,9 +28,9 @@ namespace Evoral {
|
|||
|
||||
#ifdef EVORAL_MIDI_XML
|
||||
|
||||
template<typename Timestamp>
|
||||
MIDIEvent<Timestamp>::MIDIEvent(const XMLNode& event)
|
||||
: Event<Timestamp>()
|
||||
template<typename Time>
|
||||
MIDIEvent<Time>::MIDIEvent(const XMLNode& event)
|
||||
: Event<Time>()
|
||||
{
|
||||
string name = event.name();
|
||||
|
||||
|
|
@ -51,9 +51,9 @@ MIDIEvent<Timestamp>::MIDIEvent(const XMLNode& event)
|
|||
}
|
||||
|
||||
|
||||
template<typename Timestamp>
|
||||
template<typename Time>
|
||||
boost::shared_ptr<XMLNode>
|
||||
MIDIEvent<Timestamp>::to_xml() const
|
||||
MIDIEvent<Time>::to_xml() const
|
||||
{
|
||||
XMLNode *result = 0;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue