From bf806cde661fb4e2ebbf8ec54a636de181d16301 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 18 Sep 2019 04:37:12 +0200 Subject: [PATCH] Remove old unused source file --- libs/evoral/evoral/OldSMF.hpp | 82 -------- libs/evoral/src/OldSMF.cpp | 370 ---------------------------------- 2 files changed, 452 deletions(-) delete mode 100644 libs/evoral/evoral/OldSMF.hpp delete mode 100644 libs/evoral/src/OldSMF.cpp diff --git a/libs/evoral/evoral/OldSMF.hpp b/libs/evoral/evoral/OldSMF.hpp deleted file mode 100644 index 28ca816afc..0000000000 --- a/libs/evoral/evoral/OldSMF.hpp +++ /dev/null @@ -1,82 +0,0 @@ -/* - * Copyright (C) 2009-2014 David Robillard - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with this program; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -#ifndef EVORAL_OLD_SMF_HPP -#define EVORAL_OLD_SMF_HPP - -#include "evoral/visibility.h" - -namespace Evoral { - -template class Event; - -/** Standard Midi File (Type 0) - */ -template -class /*LIBEVORAL_API*/ SMF { -public: - SMF(); - virtual ~SMF(); - - void seek_to_start() const; - - uint16_t ppqn() const { return _ppqn; } - bool is_empty() const { return _empty; } - bool eof() const { return feof(_fd); } - - Time last_event_time() const { return _last_ev_time; } - - void begin_write(); - void append_event_delta(uint32_t delta_t, const Event