#ifndef SCORECALCULATOR_H #define SCORECALCULATOR_H #include #include using namespace std; class ScoreCalculator { public: ScoreCalculator(); ~ScoreCalculator(); static int GetScore(vector rolls); }; #endif