Package logging of Z_GDU structs re-factored into own operator<<
[metaproxy-moved-to-github.git] / src / gduutil.hpp
1 /* $Id: gduutil.hpp,v 1.1 2006-08-29 10:06:31 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
13 #include <iosfwd>
14
15 namespace std 
16 {
17     std::ostream& operator<<(std::ostream& os, Z_GDU& zgdu);
18     std::ostream& operator<<(std::ostream& os, Z_APDU& zapdu);    
19 }
20
21
22 namespace metaproxy_1 {
23     namespace gdu  {
24
25
26     }    
27 }
28
29 #endif
30 /*
31  * Local variables:
32  * c-basic-offset: 4
33  * indent-tabs-mode: nil
34  * c-file-style: "stroustrup"
35  * End:
36  * vim: shiftwidth=4 tabstop=8 expandtab
37  */