X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zoom%2Fzquery.cpp;h=8bc757ade2812a2221ac2f908386abb281729487;hb=fa96bc0dcc16f6ac3e33b5144664e51cb7d09874;hp=77c0d938863f52866fea2dd2a9970ed0a3c654ad;hpb=8e0f7888835eb1a84882b440209ec125ce5856c1;p=yazpp-moved-to-github.git diff --git a/zoom/zquery.cpp b/zoom/zquery.cpp index 77c0d93..8bc757a 100644 --- a/zoom/zquery.cpp +++ b/zoom/zquery.cpp @@ -1,24 +1,21 @@ -// $Header: /home/cvsroot/yaz++/zoom/zquery.cpp,v 1.1 2002-08-08 13:31:54 mike Exp $ +// $Header: /home/cvsroot/yaz++/zoom/zquery.cpp,v 1.7 2005-06-25 15:53:21 adam Exp $ // Z39.50 Query classes -#include "zoom++.h" +#include "zoom.h" namespace ZOOM { + query::query() : q(ZOOM_query_create()) { + } query::~query() { - ZOOM_query_destroy(q); - q = 0; + ZOOM_query_destroy(q); } - - - prefixQuery::prefixQuery(const char *pqn) { - q = ZOOM_query_create(); - if (ZOOM_query_prefix(q, pqn) == -1) { - ZOOM_query_destroy(q); - throw queryError(queryError::PREFIX, pqn); - } + prefixQuery::prefixQuery(const std::string &pqn) { + if (ZOOM_query_prefix(q, pqn.c_str()) == -1) { + throw queryException(queryException::PREFIX, pqn); + } } // The binding specification says we have to have destructors for @@ -37,18 +34,22 @@ namespace ZOOM { // zeroing what we free so that we get bitten if we're wrong. // prefixQuery::~prefixQuery() { - ZOOM_query_destroy(q); - q = 0; } - CCLQuery::CCLQuery(const char *ccl, void *qualset) { - throw "Oops. No CCL support in ZOOM-C yet. Sorry."; + CCLQuery::CCLQuery(const std::string &, void *) { + throw "Oops. No CCL support in ZOOM-C yet. Sorry."; } CCLQuery::~CCLQuery() { - ZOOM_query_destroy(q); - q = 0; } } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +