Include config.hpp in all .cpp files
authorAdam Dickmeiss <adam@indexdata.dk>
Sat, 8 Oct 2005 23:29:32 +0000 (23:29 +0000)
committerAdam Dickmeiss <adam@indexdata.dk>
Sat, 8 Oct 2005 23:29:32 +0000 (23:29 +0000)
14 files changed:
src/p2.cpp
src/p2_backend_dummy.cpp
src/p2_frontend.cpp
src/p2_modules.cpp
src/p2_msg.cpp
src/p2_xmlerror.cpp
src/test_boost_threads.cpp
src/test_boost_time.cpp
src/test_filter1.cpp
src/test_filter2.cpp
src/test_session1.cpp
src/test_session2.cpp
src/test_thread_pool_observer.cpp
src/thread_pool_observer.cpp

index b586c20..0dac5e9 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: p2.cpp,v 1.2 2005-10-06 19:33:58 adam Exp $
+/* $Id: p2.cpp,v 1.3 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -25,6 +25,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include <yaz/diagbib1.h>
 #include <yaz/options.h>
 
+#include "config.hpp"
 #include <yaz++/socket-manager.h>
 #include "p2_config.h"
 #include "p2_frontend.h"
index 79e8490..0b0bbdd 100644 (file)
@@ -1,4 +1,4 @@
-
+#include "config.hpp"
 #include <yaz/log.h>
 #include "p2_backend.h"
 
index 6c73186..83e6bc7 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: p2_frontend.cpp,v 1.2 2005-10-06 19:33:58 adam Exp $
+/* $Id: p2_frontend.cpp,v 1.3 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -19,6 +19,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
  */
 
+#include "config.hpp"
 #include <yaz/log.h>
 #include <yaz/diagbib1.h>
 #include "p2_frontend.h"
index 6f1778b..fd1849c 100644 (file)
@@ -1,4 +1,5 @@
 
+#include "config.hpp"
 #include <dlfcn.h>
 
 #include "p2_modules.h"
index 7b2f4c4..5996c1c 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: p2_msg.cpp,v 1.2 2005-10-06 19:33:58 adam Exp $
+/* $Id: p2_msg.cpp,v 1.3 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -19,6 +19,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
  */
 
+#include "config.hpp"
 #include <yaz/log.h>
 #include <yaz/diagbib1.h>
 #include "p2_backend.h"
index c0d9f90..a04c4e2 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: p2_xmlerror.cpp,v 1.1 2005-10-06 09:37:25 marc Exp $
+/* $Id: p2_xmlerror.cpp,v 1.2 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -19,6 +19,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
  */
 
+#include "config.hpp"
 #include <stdio.h>
 #include <string.h>
 #include <yaz/log.h>
index 850aaf0..9aaae2e 100644 (file)
@@ -1,4 +1,5 @@
 
+#include "config.hpp"
 #include <boost/thread/mutex.hpp>
 #include <boost/thread/thread.hpp>
 
index 8fd0dea..3c4e4f4 100644 (file)
@@ -1,5 +1,6 @@
 #include <iostream>
 
+#include "config.hpp"
 #include "boost/date_time/posix_time/posix_time.hpp"
 
 #define BOOST_AUTO_TEST_MAIN
index d1142a2..b78a18a 100644 (file)
@@ -1,4 +1,5 @@
 
+#include "config.hpp"
 #include <iostream>
 #include <stdexcept>
 
index f26e6e6..f4a9b3e 100644 (file)
@@ -1,6 +1,6 @@
 
 
-
+#include "config.hpp"
 #include "filter.hpp"
 #include "router.hpp"
 #include "package.hpp"
index 58ec655..14d6cf0 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.hpp"
 #include "session.hpp"
 
 #include <iostream>
index 4f4623c..2a7a8ba 100644 (file)
@@ -1,3 +1,4 @@
+#include "config.hpp"
 #include "session.hpp"
 
 #include <iostream>
index 056f671..5ca3bfd 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: test_thread_pool_observer.cpp,v 1.1 2005-10-06 19:33:58 adam Exp $
+/* $Id: test_thread_pool_observer.cpp,v 1.2 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -19,6 +19,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 02111-1307, USA.
  */
 
+#include "config.hpp"
 #include <stdlib.h>
 #include <ctype.h>
 
index 6a8f5cb..b626e92 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: thread_pool_observer.cpp,v 1.1 2005-10-06 19:33:58 adam Exp $
+/* $Id: thread_pool_observer.cpp,v 1.2 2005-10-08 23:29:32 adam Exp $
    Copyright (c) 1998-2005, Index Data.
 
 This file is part of the yaz-proxy.
@@ -26,6 +26,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
 #include <yaz++/socket-observer.h>
 #include <yaz/log.h>
 
+#include "config.hpp"
 #include "thread_pool_observer.h"
 
 using namespace yazpp_1;