Skip to content

Instantly share code, notes, and snippets.

@anthonymorast
Created April 5, 2022 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anthonymorast/7b85aa2c394048452cf210912e24f8a6 to your computer and use it in GitHub Desktop.
Save anthonymorast/7b85aa2c394048452cf210912e24f8a6 to your computer and use it in GitHub Desktop.
#ifndef PRINTABLE_OBJECT
#define PRINTABLE_OBJECT
#include <string>
namespace FM
{
class PrintableObject
{
public:
virtual std::string getPrintString() = 0;
};
}
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment