34 lines
396 B
C++
34 lines
396 B
C++
/*
|
|
* IDisplay.h
|
|
*
|
|
* Created on: Aug 2, 2018
|
|
* Author: rhetenor
|
|
*/
|
|
|
|
#ifndef _SRC_OUTPUT_IDISPLAY_H_
|
|
#define _SRC_OUTPUT_IDISPLAY_H_
|
|
|
|
#include <array>
|
|
|
|
namespace flippR_driver
|
|
{
|
|
namespace output
|
|
{
|
|
|
|
class IDisplay
|
|
{
|
|
|
|
public:
|
|
IDisplay();
|
|
virtual ~IDisplay();
|
|
|
|
virtual int getID() = 0;
|
|
|
|
private:
|
|
std::string fit_string(std::string& score_string);
|
|
};
|
|
|
|
} /* namespace output */
|
|
}
|
|
#endif
|