3 This file is part of libmsphttp
4 Copyright © 2008 Mikkosoft Productions, Mikko Rasa
5 Distributed under the LGPL
15 ostream &operator<<(ostream &out, Status status)
19 case NONE: out<<"None"; break;
20 case OK: out<<"OK"; break;
21 case BAD_REQUEST: out<<"Bad Request"; break;
22 case FORBIDDEN: out<<"Forbidden"; break;
23 case NOT_FOUND: out<<"Not Found"; break;
24 case INTERNAL_ERROR: out<<"Internal Error"; break;
25 case NOT_IMPLEMENTED: out<<"Not Implemented"; break;
26 default: out<<"Unknown Status"; break;