Version 1.0.1. Added assignment operator for class Yaz_Z_Query.
[yazpp-moved-to-github.git] / include / yazpp / cql2rpn.h
1 /*
2  * Copyright (c) 1998-2004, Index Data.
3  * See the file LICENSE for details.
4  * 
5  * $Id: cql2rpn.h,v 1.1 2006-03-29 13:14:15 adam Exp $
6  */
7
8 #include <yaz/cql.h>
9 #include <yaz/z-core.h>
10
11 namespace yazpp_1 {
12 class YAZ_EXPORT Yaz_cql2rpn {
13  public:
14     Yaz_cql2rpn();
15     ~Yaz_cql2rpn();
16     void set_pqf_file(const char *fname);
17     int query_transform(const char *cql, Z_RPNQuery **rpnquery, ODR o,
18                         char **addinfop);
19  private:
20     cql_transform_t m_transform;
21 };
22 };
23
24 /*
25  * Local variables:
26  * c-basic-offset: 4
27  * indent-tabs-mode: nil
28  * End:
29  * vim: shiftwidth=4 tabstop=8 expandtab
30  */
31