993a6d634f53001a7b39d190a40b7dd4cc499447
[yazpp-moved-to-github.git] / src / yaz-z-server.cpp
1 /*
2  * Copyright (c) 2000, Index Data.
3  * See the file LICENSE for details.
4  * 
5  * $Log: yaz-z-server.cpp,v $
6  * Revision 1.1  2000-09-08 10:23:42  adam
7  * Added skeleton of yaz-z-server.
8  *
9  */
10
11 #include <yaz/log.h>
12 #include <yaz-z-server.h>
13
14
15 Yaz_Z_Server::Yaz_Z_Server(IYaz_PDU_Observable *the_PDU_Observable)
16     : Yaz_Z_Assoc(the_PDU_Observable)
17 {
18     m_no = 0;
19 }
20
21 void Yaz_Z_Server::recv_Z_PDU (Z_APDU *apdu)
22 {
23     logf (LOG_LOG, "recv_Z_PDU in Yaz_Z_Server");
24 }
25