Add mapping logic, refactor stuff
This commit is contained in:
11
app/include/Printable.h
Normal file
11
app/include/Printable.h
Normal 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_
|
||||
Reference in New Issue
Block a user