whops, forgot this file earlier

This commit is contained in:
Erik Faye-Lund 2008-02-17 19:16:55 +00:00
parent 380621553a
commit 4874502288

16
sync/device.cpp Normal file
View File

@ -0,0 +1,16 @@
/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
* For conditions of distribution and use, see copyright notice in LICENSE.TXT
*/
#include "device.h"
using namespace sync;
std::string Device::getTrackFileName(std::string trackName)
{
std::string fileName = baseName.c_str();
fileName += "_";
fileName += trackName;
fileName += ".track";
return fileName;
}