From 25bc817bc4a68b81a0ff0c2485c2c903a8e3851f Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Sat, 25 Aug 2018 08:51:41 -0400 Subject: Created bot --- fanmail.h | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 fanmail.h (limited to 'fanmail.h') diff --git a/fanmail.h b/fanmail.h new file mode 100644 index 0000000..a9ef046 --- /dev/null +++ b/fanmail.h @@ -0,0 +1,33 @@ +#ifndef FANMAIL_H_11D8D668 +#define FANMAIL_H_11D8D668 + +#include +#include +#include +#include +#include +#include +#include "designer.h" + +class fanmail { +public: + + fanmail( + std::string configFile, + std::mt19937& rng); + + void run() const; + +private: + + void sendTweet(Magick::Image image, std::string doc) const; + + std::mt19937& rng_; + std::unique_ptr auth_; + std::unique_ptr client_; + std::unique_ptr layout_; + rawr kgramstats_; + +}; + +#endif /* end of include guard: SAP_H_11D8D668 */ -- cgit 1.4.1