X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Fyaz-server.cpp;h=8aecb147122c33ea842e2f488e63d4b29ee22f6b;hb=316df82985a4207a7d52e7d88567bf26d5c2c7c8;hp=0cbf8010ef083ca90da9579f94f12cde6837ce7c;hpb=eea3cf8293bab09d65bac8d34e16b1a12ed67919;p=yazpp-moved-to-github.git diff --git a/src/yaz-server.cpp b/src/yaz-server.cpp index 0cbf801..8aecb14 100644 --- a/src/yaz-server.cpp +++ b/src/yaz-server.cpp @@ -1,10 +1,12 @@ /* - * Copyright (c) 1998-1999, Index Data. + * Copyright (c) 1998-2000, Index Data. * See the file LICENSE for details. - * Sebastian Hammer, Adam Dickmeiss * * $Log: yaz-server.cpp,v $ - * Revision 1.7 1999-12-06 13:52:45 adam + * Revision 1.8 2000-09-08 10:23:42 adam + * Added skeleton of yaz-z-server. + * + * Revision 1.7 1999/12/06 13:52:45 adam * Modified for new location of YAZ header files. Experimental threaded * operation. * @@ -31,11 +33,11 @@ */ #include -#include +#include #include #include -class MyServer : public Yaz_Z_Assoc { +class MyServer : public Yaz_Z_Server { public: MyServer(IYaz_PDU_Observable *the_PDU_Observable); void recv_Z_PDU(Z_APDU *apdu); @@ -84,7 +86,7 @@ IYaz_PDU_Observer *MyServer::clone(IYaz_PDU_Observable *the_PDU_Observable) } MyServer::MyServer(IYaz_PDU_Observable *the_PDU_Observable) : - Yaz_Z_Assoc (the_PDU_Observable) + Yaz_Z_Server (the_PDU_Observable) { m_no = 0; }