X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zoom%2Fmaster-header;h=de6a11ec5bd512665566de16391d3fb440e6df30;hb=7b9c683505fd79972d6f3d397ac1c6e9040d2110;hp=a66b089d106565c287de74b0685e4e3ac76bfd5b;hpb=7c6295779d21f882f9d53186c5a751cbf86b6c86;p=yazpp-moved-to-github.git diff --git a/zoom/master-header b/zoom/master-header index a66b089..de6a11e 100644 --- a/zoom/master-header +++ b/zoom/master-header @@ -1,4 +1,4 @@ -// $Header: /home/cvsroot/yaz++/zoom/master-header,v 1.2 2002-08-08 16:06:08 mike Exp $ +// $Header: /home/cvsroot/yaz++/zoom/master-header,v 1.6 2002-10-30 10:03:52 adam Exp $ // // ZOOM C++ Binding. // The ZOOM homepage is at http://zoom.z3950.org/ @@ -18,11 +18,12 @@ * */ *#include * + namespace ZOOM { // Forward declarations for type names. - class query; - class resultSet; - class record; + class YAZ_EXPORT query; + class YAZ_EXPORT resultSet; + class YAZ_EXPORT record; const char *option (const char *key); const char *option (const char *key, const char *val); @@ -30,40 +31,40 @@ namespace ZOOM { char *errmsg (); char *addinfo (); - class connection { + class YAZ_EXPORT connection { * ZOOM_connection c; +* friend class resultSet; // so it can use _getYazConnection() +* ZOOM_connection _getYazConnection () const { return c; } public: connection (const char *hostname, int portnum); - // ### I would like to add a ``throw (ZOOM::exception)'' clause - // here, but it looks like G++ 2.95.2 doesn't recognise it. ~connection (); const char *option (const char *key) const; const char *option (const char *key, const char *val); -* ZOOM_connection _getYazConnection () const { return c; } // package-private }; class query { // pure virtual class: derive concrete subclasses from it. +* friend class resultSet; // so it can use _getYazQuery() +* ZOOM_query _getYazQuery () const { return q; } * protected: * ZOOM_query q; public: virtual ~query (); -* ZOOM_query _getYazQuery () const { return q; } // package-private }; - class prefixQuery : public query { + class YAZ_EXPORT prefixQuery : public query { public: prefixQuery (const char *pqn); ~prefixQuery (); }; - class CCLQuery : public query { + class YAZ_EXPORT CCLQuery : public query { public: CCLQuery (const char *ccl, void *qualset); ~CCLQuery (); }; - class resultSet { + class YAZ_EXPORT resultSet { * connection &owner; * ZOOM_resultset rs; public: @@ -75,12 +76,13 @@ namespace ZOOM { const record *getRecord (size_t i) const; }; - class record { + class YAZ_EXPORT record { * const resultSet *owner; * ZOOM_record r; - public: +* friend class resultSet; // so it can use this constructor * record::record (const resultSet *rs, ZOOM_record rec): * owner (rs), r (rec) {} + public: ~record (); enum syntax { UNKNOWN, GRS1, SUTRS, USMARC, UKMARC, XML @@ -91,7 +93,7 @@ namespace ZOOM { const char *rawdata () const; }; - class exception { + class YAZ_EXPORT exception { * protected: * int code; public: @@ -100,14 +102,14 @@ namespace ZOOM { const char *errmsg () const; }; - class systemException: public exception { + class YAZ_EXPORT systemException: public exception { public: systemException (); int errcode () const; const char *errmsg () const; }; - class bib1Exception: public exception { + class YAZ_EXPORT bib1Exception: public exception { * const char *info; public: * ~bib1Exception (); @@ -117,12 +119,14 @@ namespace ZOOM { const char *addinfo () const; }; - class queryException: public exception { + class YAZ_EXPORT queryException: public exception { * const char *q; public: * ~queryException (); - static const int PREFIX = 1; - static const int CCL = 2; + enum { + PREFIX = 1, + CCL = 2 + }; queryException (int qtype, const char *source); int errcode () const; const char *errmsg () const;