Remove unused folder
This commit is contained in:
parent
3fd7328f66
commit
8ed07d0334
@ -1,13 +0,0 @@
|
|||||||
#ifndef FILEHELPER_H
|
|
||||||
#define FILEHELPER_H
|
|
||||||
|
|
||||||
class FileHelper {
|
|
||||||
public:
|
|
||||||
FileHelper();
|
|
||||||
|
|
||||||
~FileHelper();
|
|
||||||
|
|
||||||
static bool FileExists(char *path);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,16 +0,0 @@
|
|||||||
#ifndef FILEREADER_H
|
|
||||||
#define FILEREADER_H
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
class FileReader {
|
|
||||||
public:
|
|
||||||
FileReader();
|
|
||||||
|
|
||||||
~FileReader();
|
|
||||||
|
|
||||||
static std::string GetFile(char *path);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,18 +0,0 @@
|
|||||||
#ifndef NUMBERHELPER_H
|
|
||||||
#define NUMBERHELPER_H
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
class NumberHelper {
|
|
||||||
public:
|
|
||||||
NumberHelper();
|
|
||||||
|
|
||||||
~NumberHelper();
|
|
||||||
|
|
||||||
static vector<int> GetNumbers(string csv);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,18 +0,0 @@
|
|||||||
#ifndef PRINTFRAMES_H
|
|
||||||
#define PRINTFRAMES_H
|
|
||||||
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
class PrintFrames {
|
|
||||||
public:
|
|
||||||
PrintFrames();
|
|
||||||
|
|
||||||
~PrintFrames();
|
|
||||||
|
|
||||||
static void PrintHeader(vector<int> rolls);
|
|
||||||
static void PrintValue(vector<int> rolls);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -1,18 +0,0 @@
|
|||||||
#ifndef SCORECALCULATOR_H
|
|
||||||
#define SCORECALCULATOR_H
|
|
||||||
|
|
||||||
#include <string>
|
|
||||||
#include <vector>
|
|
||||||
|
|
||||||
using namespace std;
|
|
||||||
|
|
||||||
class ScoreCalculator {
|
|
||||||
public:
|
|
||||||
ScoreCalculator();
|
|
||||||
|
|
||||||
~ScoreCalculator();
|
|
||||||
|
|
||||||
static int GetScore(vector<int> rolls);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
Loading…
Reference in New Issue
Block a user