Patch #1012 » http.patch
include/exiv2/http.hpp (working copy) | ||
---|---|---|
1 |
#ifndef HTTP_H_ |
|
2 |
#define HTTP_H_ |
|
1 |
#ifndef HTTP_HPP_
|
|
2 |
#define HTTP_HPP_
|
|
3 | 3 | |
4 | 4 |
#include <string> |
5 | 5 |
#include <map> |
6 | 6 |
#include <algorithm> |
7 | 7 | |
8 |
#include <exiv2/exiv2.hpp> |
|
9 | ||
10 | 8 |
namespace Exiv2 { |
11 | 9 |
typedef std::map<std::string,std::string> dict_t; |
12 | 10 |
typedef dict_t::iterator dict_i; |
... | ... | |
15 | 13 | |
16 | 14 |
} |
17 | 15 |
#endif |
18 | ||
19 |