Pruning unneeded files

This commit is contained in:
Kayne Ruse
2013-07-15 16:36:02 +10:00
parent c4bcced984
commit ee3877b906
11 changed files with 50 additions and 171 deletions
+10
View File
@@ -25,6 +25,16 @@
using namespace std;
//-------------------------
//Quick and dirty
//-------------------------
static std::string itos(int i) {
char buffer[20];
snprintf(buffer, 20, "%d", i);
return std::string(buffer);
}
//-------------------------
//Public access members
//-------------------------