Moved header files to include/yaz++. Switched to libtool and automake.
[yazpp-moved-to-github.git] / include / yaz++ / yaz-query.h
1 /*
2  * Copyright (c) 1998-2000, Index Data.
3  * See the file LICENSE for details.
4  * 
5  * $Id: yaz-query.h,v 1.1 2000-10-11 11:58:16 adam Exp $
6  */
7
8
9 /** Query
10     Generic Query.
11 */
12 class YAZ_EXPORT Yaz_Query {
13  public:
14     /// Print query in buffer described by str and len
15     virtual void print (char *str, int len) = 0;
16 };
17