Rudiments
httpresponse.h
1// Copyright (c) 1999-2018 David Muse
2// See the COPYING file for more information
3
5 httpresponse &operator=(httpresponse &h) { return *this; };
6
7 ssize_t printfDelegate(const char *format, va_list *argp);
8 ssize_t printfDelegate(const wchar_t *format, va_list *argp);
9 ssize_t printfUcs2Delegate(const ucs2_t *format, va_list *argp);
10
11 private:
12 httpresponseprivate *pvt;
Definition httpresponse.h:11