added dir outputitems and moved items into

This commit is contained in:
Johannes Wendel
2018-11-20 22:52:45 +01:00
parent 2842ac20bb
commit 5a2242a850
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
/*
* 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