summaryrefslogtreecommitdiff
path: root/src/http.hh
blob: 58bfb92736859c48c2905f73082bfd06c9158910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef HTTP_HH
#define HTTP_HH

#include <string>

namespace stuff {

class Http {
public:
    static void response(unsigned int status, const std::string& content);

private:
    Http() = delete;
    ~Http() = delete;
};

}  // namespace stuff

#endif /* HTTP_HH */