implement yt search history

Origin commit data
------------------
Branch: ni/coolstream
Commit: 4a0fdba710
Author: martii <m4rtii@gmx.de>
Date: 2013-08-15 (Thu, 15 Aug 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
martii
2013-08-15 20:33:03 +02:00
committed by Jacek Jendrzej
parent 5e13124e57
commit 7f0c1551bd
7 changed files with 110 additions and 4 deletions

View File

@@ -24,7 +24,8 @@
#include <stdint.h>
#include <string>
#include <sstream>
int my_system(const char * cmd);
int my_system(int argc, const char *arg, ...); /* argc is number of arguments including command */
@@ -64,4 +65,11 @@ class CFileHelpers
};
template<class C> std::string to_string(C i)
{
std::stringstream s;
s << i;
return s.str();
}
#endif