blob: 5d447b583929e9abea02b298eff89227b6108f04 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#ifndef INFINITE_H_A2B995C7
#define INFINITE_H_A2B995C7
#include <random>
#include <string>
#include <twitter.h>
#include <verbly.h>
#include <memory>
#include <Magick++.h>
#include "sentence.h"
class infinite {
public:
infinite(
std::string configFile,
std::mt19937& rng);
void run() const;
private:
std::mt19937& rng_;
std::unique_ptr<verbly::database> database_;
std::unique_ptr<sentence> generator_;
std::unique_ptr<twitter::client> client_;
std::string groups_;
std::vector<std::string> fonts_;
};
#endif /* end of include guard: INFINITE_H_A2B995C7 */
|