X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;ds=sidebyside;f=include%2Fyaz%2B%2B%2Fcql2rpn.h;fp=include%2Fyaz%2B%2B%2Fcql2rpn.h;h=be277a84e21d339bebeb74e9d6aca588f6808168;hb=2c25ce513613784819fcb216c60d1584402e7907;hp=0000000000000000000000000000000000000000;hpb=779c379c70bf479073cc4968f6bf5ad35ffe6eec;p=yazpp-moved-to-github.git diff --git a/include/yaz++/cql2rpn.h b/include/yaz++/cql2rpn.h new file mode 100644 index 0000000..be277a8 --- /dev/null +++ b/include/yaz++/cql2rpn.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 1998-2004, Index Data. + * See the file LICENSE for details. + * + * $Id: cql2rpn.h,v 1.1 2004-03-29 22:46:50 adam Exp $ + */ + +#include +#include + +class YAZ_EXPORT Yaz_cql2rpn { + public: + Yaz_cql2rpn(); + ~Yaz_cql2rpn(); + void set_pqf_file(const char *fname); + int query_transform(const char *cql, Z_RPNQuery **rpnquery, ODR o, + char **addinfop); + private: + cql_transform_t m_transform; +}; +