Add mapping logic, refactor stuff

This commit is contained in:
2022-09-19 20:02:18 +02:00
parent dccd6f2773
commit f507912623
19 changed files with 275 additions and 187 deletions

11
app/include/Printable.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef PRINTABLE_H_
#define PRINTABLE_H_
#include <string>
class Printable {
public:
virtual const std::string toString() const = 0;
};
#endif // PRINTABLE_H_