From 0baed246b6f287e1c03519536011f34e87d19920 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Wed, 15 Aug 2018 18:45:29 -0400 Subject: Started to modernize bot (this is completely broken) --- infinite.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 infinite.h (limited to 'infinite.h') diff --git a/infinite.h b/infinite.h new file mode 100644 index 0000000..5d447b5 --- /dev/null +++ b/infinite.h @@ -0,0 +1,31 @@ +#ifndef INFINITE_H_A2B995C7 +#define INFINITE_H_A2B995C7 + +#include +#include +#include +#include +#include +#include +#include "sentence.h" + +class infinite { +public: + + infinite( + std::string configFile, + std::mt19937& rng); + + void run() const; + +private: + + std::mt19937& rng_; + std::unique_ptr database_; + std::unique_ptr generator_; + std::unique_ptr client_; + std::string groups_; + std::vector fonts_; +}; + +#endif /* end of include guard: INFINITE_H_A2B995C7 */ -- cgit 1.4.1