blob: 8c3fecf20ac5cca78f46fa6301264c22325ded7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef IMAGESTORE_H_80B1E49F
#define IMAGESTORE_H_80B1E49F
#include <Magick++.h>
#include <string>
class imagestore {
public:
explicit imagestore(std::string path) : path_(std::move(path)) {}
Magick::Image get(std::string key, std::string url) const;
private:
std::string path_;
};
#endif /* end of include guard: IMAGESTORE_H_80B1E49F */
|