Expose ZOOM query object
[yaz4j-moved-to-github.git] / src / main / java / org / yaz4j / CQLQuery.java
1 /*
2  * Copyright (c) 1995-2013, Index Datassss
3  * All rights reserved.
4  * See the file LICENSE for details.
5  */
6 package org.yaz4j;
7
8 import org.yaz4j.jni.yaz4jlib;
9
10 /**
11  *
12  * @author jakub
13  */
14 public class CQLQuery extends Query {
15
16   public CQLQuery(String cqlQuery) {
17     super();
18     yaz4jlib.ZOOM_query_cql(query, cqlQuery);
19   }
20   
21 }