parsing of SRW request packages, and sending of Z3950 init, search and present almost...
[metaproxy-moved-to-github.git] / src / gduutil.hpp
1 /* $Id: gduutil.hpp,v 1.3 2006-09-19 13:50:17 marc Exp $
2    Copyright (c) 2005-2006, Index Data.
3
4    See the LICENSE file for details
5  */
6
7 #ifndef YP2_GDUUTIL_HPP
8 #define YP2_GDUUTIL_HPP
9
10 #include <yaz/zgdu.h>
11 #include <yaz/z-core.h>
12 #include <yaz/srw.h>
13
14 #include <iosfwd>
15
16 namespace std 
17 {
18     std::ostream& operator<<(std::ostream& os, Z_GDU& zgdu);
19     std::ostream& operator<<(std::ostream& os, Z_APDU& zapdu); 
20     std::ostream& operator<<(std::ostream& os, Z_SRW_PDU& srw_pdu); 
21     std::ostream& operator<<(std::ostream& os, Z_HTTP_Request& httpreq);
22     std::ostream& operator<<(std::ostream& os, Z_HTTP_Response& httpres);
23     std::ostream& operator<<(std::ostream& os, Z_Records & rs);
24     std::ostream& operator<<(std::ostream& os, Z_DiagRec& dr);
25     std::ostream& operator<<(std::ostream& os, Z_DefaultDiagFormat& ddf);
26 }
27
28
29 namespace metaproxy_1 {
30     namespace gdu  {
31
32
33     }    
34 }
35
36 #endif
37 /*
38  * Local variables:
39  * c-basic-offset: 4
40  * indent-tabs-mode: nil
41  * c-file-style: "stroustrup"
42  * End:
43  * vim: shiftwidth=4 tabstop=8 expandtab
44  */