Lines Matching refs:StreamWrapper
19 StreamWrapper outs() { return {std::addressof(std::cout)}; } in outs()
21 template <typename T> StreamWrapper &StreamWrapper::operator<<(T t) { in operator <<()
29 template StreamWrapper &StreamWrapper::operator<<<void *>(void *t);
30 template StreamWrapper &StreamWrapper::operator<<<const char *>(const char *t);
31 template StreamWrapper &StreamWrapper::operator<<<char *>(char *t);
32 template StreamWrapper &StreamWrapper::operator<<<char>(char t);
33 template StreamWrapper &StreamWrapper::operator<<<short>(short t);
34 template StreamWrapper &StreamWrapper::operator<<<int>(int t);
35 template StreamWrapper &StreamWrapper::operator<<<long>(long t);
36 template StreamWrapper &StreamWrapper::operator<<<long long>(long long t);
37 template StreamWrapper &
38 StreamWrapper::operator<<<unsigned char>(unsigned char t);
39 template StreamWrapper &
40 StreamWrapper::operator<<<unsigned short>(unsigned short t);
41 template StreamWrapper &StreamWrapper::operator<<<unsigned int>(unsigned int t);
42 template StreamWrapper &
43 StreamWrapper::operator<<<unsigned long>(unsigned long t);
44 template StreamWrapper &
45 StreamWrapper::operator<<<unsigned long long>(unsigned long long t);
46 template StreamWrapper &StreamWrapper::operator<<<bool>(bool t);
47 template StreamWrapper &StreamWrapper::operator<<<std::string>(std::string t);
48 template StreamWrapper &StreamWrapper::operator<<<float>(float t);
49 template StreamWrapper &StreamWrapper::operator<<<double>(double t);
52 : StreamWrapper(new std::ofstream(FN)) {} in OutputFileStream()