juce_MidiFile.h:
/** Move constructor */
MidiFile (MidiFile&& other);
/** Move assignment operator */
MidiFile& operator= (MidiFile&& other);
juce_MidiFile.cpp:
MidiFile::MidiFile (MidiFile&& other)
: tracks (static_cast<OwnedArray<MidiMessageSequence>&&> (other.tracks)),
timeFormat (other.timeFormat)
{
}
MidiFile& MidiFile::operator= (MidiFile&& other)
{
timeFormat = other.timeFormat;
tracks = static_cast<OwnedArray<MidiMessageSequence>&&> (other.tracks);
return *this;
}

