Skip to content

Instantly share code, notes, and snippets.

@bentglasstube
Created December 11, 2016 17:10
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 bentglasstube/75b213cc6d68e5a397afa245d615e67f to your computer and use it in GitHub Desktop.
Save bentglasstube/75b213cc6d68e5a397afa245d615e67f to your computer and use it in GitHub Desktop.
class Email {
public:
Email();
static Email* make_conference_email(const std::string& month);
static Email* make_angry_boss_email(const std::string& boss_name, int lives);
std::string from, subject, body;
bool conference;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment