From: Adam Dickmeiss Date: Wed, 9 Oct 2002 12:52:42 +0000 (+0000) Subject: Remove one more X-Git-Tag: YAZPP.0.5~52 X-Git-Url: http://git.indexdata.com/?p=yazpp-moved-to-github.git;a=commitdiff_plain;h=f35634a8c44e53e2a183f995a563985fa87299a3;hp=72c45b0b232b0fe458eeb6a55beb1c87f0ca1dd7 Remove one more --- diff --git a/include/yaz++/yaz-z-databases.h b/include/yaz++/yaz-z-databases.h deleted file mode 100644 index de6bc59..0000000 --- a/include/yaz++/yaz-z-databases.h +++ /dev/null @@ -1,26 +0,0 @@ -/* - * Copyright (c) 2001, Index Data. - * See the file LICENSE for details. - * - * $Id: yaz-z-databases.h,v 1.2 2002-04-24 13:16:47 heikki Exp $ - */ - -#include - -/** Z39.50 Databases list - */ -class YAZ_EXPORT Yaz_Z_Databases { -public: -/// Make Query from rpn string - Yaz_Z_Databases(); - ~Yaz_Z_Databases(); - void set (int num, const char **db); - void get (NMEM n, int *num, char ***db); - void get (ODR o, int *num, char ***db); - int match (Yaz_Z_Databases &db); - int match (int num, const char **db); - private: - char **m_list; - int m_num; - NMEM nmem; -};