blob: 98ff8d0345b9d5ab5437b154854fe02e39d5cf9b (
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
|
#ifndef FEFISMS_H_09912EAE
#define FEFISMS_H_09912EAE
#include <random>
#include <string>
#include <verbly.h>
#include <stdexcept>
#include <memory>
#include <twitter.h>
class fefisms {
public:
fefisms(
std::string configFile,
std::mt19937& rng);
void run() const;
private:
std::mt19937& rng_;
std::unique_ptr<verbly::database> database_;
std::unique_ptr<twitter::client> client_;
};
#endif /* end of include guard: FEFISMS_H_09912EAE */
|