More Doxygen stuff; for auto-generated code too
[yaz-moved-to-github.git] / include / yaz / xmlquery.h
1 /*
2  * Copyright (C) 1995-2006, Index Data ApS
3  * See the file LICENSE for details.
4  *
5  * $Id: xmlquery.h,v 1.4 2006-04-20 20:50:51 adam Exp $
6  */
7
8 /** \file xmlquery.h
9     \brief Query / XML conversions
10 */
11
12 #ifndef YAZ_XMLQUERY_H
13 #define YAZ_XMLQUERY_H
14
15 #include <yaz/yconfig.h>
16 #include <yaz/proto.h>
17
18 YAZ_BEGIN_CDECL
19
20 YAZ_EXPORT void yaz_query2xml(const Z_Query *q, void *docp_void);
21 YAZ_EXPORT void yaz_rpnquery2xml(const Z_RPNQuery *rpn, void *docp_void);
22
23 YAZ_EXPORT void yaz_xml2query(const void *xmlnodep, Z_Query **query, ODR odr,
24                               int *error_code, const char **addinfo);
25
26 YAZ_END_CDECL
27
28 #endif
29 /*
30  * Local variables:
31  * c-basic-offset: 4
32  * indent-tabs-mode: nil
33  * End:
34  * vim: shiftwidth=4 tabstop=8 expandtab
35  */
36