Remove one more
authorAdam Dickmeiss <adam@indexdata.dk>
Wed, 9 Oct 2002 12:52:42 +0000 (12:52 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Wed, 9 Oct 2002 12:52:42 +0000 (12:52 +0000)
include/yaz++/yaz-z-databases.h [deleted file]

diff --git a/include/yaz++/yaz-z-databases.h b/include/yaz++/yaz-z-databases.h
deleted file mode 100644 (file)
index de6bc59..0000000
+++ /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 <yaz/proto.h>
-
-/** 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;
-};