blob: a02197bbaa30d2cf204d7c706adbc0501f30a14f (
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
|
#ifndef WIZARD_H_1014B13E
#define WIZARD_H_1014B13E
#include <Magick++.h>
#include <random>
#include <string>
#include "cardset.h"
#include "imagestore.h"
class wizard {
public:
wizard(const cardset& cards, const imagestore& images, std::string text,
std::mt19937& rng);
Magick::Image run();
private:
const cardset& cards_;
const imagestore& images_;
std::string text_;
std::mt19937 rng_;
};
#endif /* end of include guard: WIZARD_H_1014B13E */
|