data: rewrote TicTacToe to work without std libs and split to cpp

This commit is contained in:
Eberhard Graether
2015-09-11 13:00:43 +02:00
parent eaa3fab4ec
commit 0fc80d2a52
19 changed files with 732 additions and 211 deletions
+23
View File
@@ -0,0 +1,23 @@
#include "io.h"
// #include <iostream>
// #include <sstream>
// #include <string>
int io::numberIn() {
// std::string input;
// getline( std::cin, input );
// std::stringstream stream( input );
int number;
// stream >> number;
return number;
}
void io::numberOut(int num) {
// std::cout << num;
}
void io::stringOut(const char* str) {
// std::cout << str;
}