This commit is contained in:
Jonas Zeunert
2018-11-20 23:23:16 +01:00
parent 08011074ea
commit 6104dd95c2
2 changed files with 2 additions and 5 deletions

View File

@@ -16,6 +16,7 @@ namespace flippR_driver
{
namespace output
{
template <int DigitCount>
class Display : public IDisplay<DigitCount>
{
@@ -38,9 +39,6 @@ private:
std::string fit_string(std::string& score_string);
};
using SevenDigitDisplay = Display<7>;
using EightDigitDisply = Display<8>;
} /* namespace output */
}

View File

@@ -24,8 +24,7 @@ public:
virtual int getID() = 0;
private:
std::string fit_string(std::string& score_string);
virtual
};
} /* namespace output */