summaryrefslogtreecommitdiffstats
path: root/ext/yahttp/yahttp/yahttp.hpp
blob: d60be7a9fa14ee43beff4746ecd0b08527a2e950 (plain)
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
32
33
34
35
36
37
#include <map>
#include <iostream>
#include <locale>
#include <algorithm>
#include <string>
#include <cstdio>
#include <stdexcept>
#include <sys/time.h>
#include <iomanip>
#include <list>
#include <vector>

#include "yahttp-config.h"
#include "exception.hpp"
#include "url.hpp"
#include "utility.hpp"
#include "url.hpp"
#include "cookie.hpp"
#include "reqresp.hpp"

/*! \mainpage Yet Another HTTP Library Documentation
\section sec_quick_start Quick start example

@code
#include <yahttp/yahttp.hpp>

int main(void) {
  std::ifstream ifs("request.txt");
  YaHTTP::Request req;
  ifs >> req;

  std::cout << req.method " " << req.url.path << std::endl;
  return 0;
}
@endcode
\author Aki Tuomi
*/