De-templatify Evoral::SMF which has no concept of time other than SMF time.

git-svn-id: svn://localhost/ardour2/branches/3.0@4571 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
David Robillard 2009-02-15 01:32:41 +00:00
parent 5a48f99f72
commit 5d519f8bb1
7 changed files with 33 additions and 51 deletions

View file

@ -7,7 +7,7 @@ CPPUNIT_TEST_SUITE_REGISTRATION( SMFTest );
void
SMFTest::createNewFileTest ()
{
TestSMF<Time> smf;
TestSMF smf;
smf.create("NewFile.mid");
smf.close();
CPPUNIT_ASSERT(access("NewFile.mid", R_OK) == 0);
@ -17,7 +17,7 @@ SMFTest::createNewFileTest ()
void
SMFTest::takeFiveTest ()
{
TestSMF<Time> smf;
TestSMF smf;
smf.open("./test/testdata/TakeFive.mid");
CPPUNIT_ASSERT(!smf.is_empty());