Expanded tabs in all source files. Added vim/emacs local variables
[yazpp-moved-to-github.git] / include / yaz++ / query.h
1 /*
2  * Copyright (c) 1998-2000, Index Data.
3  * See the file LICENSE for details.
4  * 
5  * $Id: query.h,v 1.3 2005-06-25 15:53:19 adam Exp $
6  */
7
8 namespace yazpp_1 {
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 };
18 /*
19  * Local variables:
20  * c-basic-offset: 4
21  * indent-tabs-mode: nil
22  * End:
23  * vim: shiftwidth=4 tabstop=8 expandtab
24  */
25