new feature: add random songs to playlist

This commit is contained in:
Andrzej Rybczak
2009-05-24 22:30:02 +02:00
parent 5f5d6bf03f
commit dd266b0103
6 changed files with 59 additions and 1 deletions

View File

@@ -33,6 +33,11 @@ int StrToInt(const std::string &str)
return atoi(str.c_str());
}
long StrToLong(const std::string &str)
{
return atol(str.c_str());
}
std::string IntoStr(int l)
{
std::ostringstream ss;