Move yaz-proxy to separate sub directory.
[yazpp-moved-to-github.git] / include / yaz++ / 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 2004-03-29 22:46:50 adam Exp $
6  */
7
8 #include <yaz/cql.h>
9 #include <yaz/z-core.h>
10
11 class YAZ_EXPORT Yaz_cql2rpn {
12  public:
13     Yaz_cql2rpn();
14     ~Yaz_cql2rpn();
15     void set_pqf_file(const char *fname);
16     int query_transform(const char *cql, Z_RPNQuery **rpnquery, ODR o,
17                         char **addinfop);
18  private:
19     cql_transform_t m_transform;
20 };
21