minor
authorHeikki Levanto <heikki@indexdata.dk>
Tue, 12 Sep 2000 16:40:33 +0000 (16:40 +0000)
committerHeikki Levanto <heikki@indexdata.dk>
Tue, 12 Sep 2000 16:40:33 +0000 (16:40 +0000)
include/yaz-pdu-assoc.h
include/yaz-socket-manager.h
src/yaz-z-assoc.cpp

index e5c223c..6576bb1 100644 (file)
@@ -2,9 +2,12 @@
  * Copyright (c) 1998-2000, Index Data.
  * See the file LICENSE for details.
  * 
- * $Id: yaz-pdu-assoc.h,v 1.10 2000-09-12 16:04:17 adam Exp $
+ * $Id: yaz-pdu-assoc.h,v 1.11 2000-09-12 16:40:33 heikki Exp $
  */
 
+#ifndef YAZ_PDU_ASSOC_INCLUDED
+#define YAZ_PDU_ASSOC_INCLUDED
+
 #include <yaz/comstack.h>
 #include <yaz-socket-observer.h>
 #include <yaz-pdu-observer.h>
@@ -66,3 +69,5 @@ class YAZ_EXPORT Yaz_PDU_Assoc : public IYaz_PDU_Observable, IYazSocketObserver
     /// Child start...
     virtual void childNotify(int fd);
 };
+
+#endif
\ No newline at end of file
index d544426..b4a04d1 100644 (file)
@@ -2,9 +2,12 @@
  * Copyright (c) 1998-2000, Index Data.
  * See the file LICENSE for details.
  * 
- * $Id: yaz-socket-manager.h,v 1.6 2000-09-08 10:23:42 adam Exp $
+ * $Id: yaz-socket-manager.h,v 1.7 2000-09-12 16:40:33 heikki Exp $
  */
 
+#ifndef YAZ_SOCKET_MANAGER_INCLUDED
+#define YAZ_SOCKET_MANAGER_INCLUDED
+
 #include <yaz-socket-observer.h>
 #include <time.h>
 
@@ -56,3 +59,5 @@ class YAZ_EXPORT Yaz_SocketManager : public IYazSocketObservable {
     virtual ~Yaz_SocketManager();
 };
 
+
+#endif
\ No newline at end of file
index 04c4375..e10ac79 100644 (file)
@@ -3,7 +3,10 @@
  * See the file LICENSE for details.
  * 
  * $Log: yaz-z-assoc.cpp,v $
- * Revision 1.13  2000-09-08 10:23:42  adam
+ * Revision 1.14  2000-09-12 16:40:33  heikki
+ * minor
+ *
+ * Revision 1.13  2000/09/08 10:23:42  adam
  * Added skeleton of yaz-z-server.
  *
  * Revision 1.12  2000/09/05 13:57:28  adam
@@ -64,7 +67,7 @@ int Yaz_Z_Assoc::yaz_init_func()
     return 1;
 }
 
-int Yaz_Z_Assoc::yaz_init_flag = Yaz_Z_Assoc::yaz_init_func();
+int Yaz_Z_Assoc::yaz_init_flag =  Yaz_Z_Assoc::yaz_init_func();  
 
 Yaz_Z_Assoc::Yaz_Z_Assoc(IYaz_PDU_Observable *the_PDU_Observable)
 {
@@ -88,7 +91,7 @@ void Yaz_Z_Assoc::set_APDU_log(const char *fname)
     delete [] m_APDU_fname;
     m_APDU_fname = 0;
 
-    if (fname)
+    if (fname) 
     {
        m_APDU_fname = new char[strlen(fname)+1];
        strcpy (m_APDU_fname, fname);
@@ -107,7 +110,7 @@ const char *Yaz_Z_Assoc::get_APDU_log()
 
 Yaz_Z_Assoc::~Yaz_Z_Assoc()
 {
-    m_PDU_Observable->destroy();
+    m_PDU_Observable->destroy();  
     delete m_PDU_Observable;
     odr_destroy (m_odr_print);     // note: also runs fclose on m_APDU_file ..
     odr_destroy (m_odr_out);