X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz-ir-assoc.h;h=bd1ea66a6ebb7584550881c11c7ed338e398cec6;hb=316df82985a4207a7d52e7d88567bf26d5c2c7c8;hp=b60f415aa73ce795bf963bef42f52e279bfc70b7;hpb=5c45ffbb2b430a6f41277c303a5e9b94242dab96;p=yazpp-moved-to-github.git diff --git a/include/yaz-ir-assoc.h b/include/yaz-ir-assoc.h index b60f415..bd1ea66 100644 --- a/include/yaz-ir-assoc.h +++ b/include/yaz-ir-assoc.h @@ -1,9 +1,8 @@ /* - * Copyright (c) 1998-1999, Index Data. + * Copyright (c) 1998-2000, Index Data. * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * - * $Id: yaz-ir-assoc.h,v 1.7 1999-04-21 12:09:01 adam Exp $ + * $Id: yaz-ir-assoc.h,v 1.11 2000-09-08 10:23:42 adam Exp $ */ #include @@ -54,9 +53,11 @@ class YAZ_EXPORT Yaz_IR_Assoc: public Yaz_Z_Assoc { const char *get_cookie(); /// Send Services - int send_initRequest(); - int send_searchRequest(Yaz_Z_Query *query); - int send_presentRequest(int start, int number); + int send_initRequest(char* pRefId=NULL); + int send_searchRequest(Yaz_Z_Query *query, char* pResultSetId = NULL, char* pRefId = NULL); + int send_presentRequest(int start, int number, char* pResultSetId = NULL, char* pRefId = NULL); + int send_deleteResultSetRequest(char* pResultSetId = 0, char* pRefId = 0); + /// Recv Services virtual void recv_initRequest(Z_InitRequest *initRequest); virtual void recv_initResponse(Z_InitResponse *initResponse); @@ -73,4 +74,5 @@ class YAZ_EXPORT Yaz_IR_Assoc: public Yaz_Z_Assoc { int m_preferredRecordSyntax; Z_ElementSetNames *m_elementSetNames; int m_lastReceived; + int m_log; };