removed some useless spaces; not very important, I know :)
[senf.git] / Utils / impl / membind.hh
index a0c619d..fcf3eaf 100644 (file)
@@ -1,9 +1,9 @@
 // $Id$
 //
-// Copyright (C) 2006 
-// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
-// Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
-//     Stefan Bund <stefan.bund@fokus.fraunhofer.de>
+// Copyright (C) 2006
+// Fraunhofer Institute for Open Communication Systems (FOKUS)
+// Competence Center NETwork research (NET), St. Augustin, GERMANY
+//     Stefan Bund <g0dil@berlios.de>
 //
 // This program is free software; you can redistribute it and/or modify
 // it under the terms of the GNU General Public License as published by
@@ -27,6 +27,7 @@
 #include <boost/preprocessor/cat.hpp>
 #include <boost/preprocessor/repetition/enum_shifted.hpp>
 #include <boost/preprocessor/iteration/iterate.hpp>
+#include "../../config.hh"
 
 template <typename R, typename T>
 boost::function<R()> membind(R (T::* fn)(),scOBTYPE ob)
@@ -35,16 +36,16 @@ boost::function<R()> membind(R (T::* fn)(),scOBTYPE ob)
 }
 
 // for BOOST_PP_ITERATION() in 2..9 do
-#define BOOST_PP_ITERATION_PARAMS_1 (4, (2, 9, "Utils/impl/membind.hh", 1))
+#define BOOST_PP_ITERATION_PARAMS_1 (4, (2, 9, SENF_ABSOLUTE_INCLUDE_PATH(Utils/impl/membind.hh), 1))
 #include BOOST_PP_ITERATE()
 #elif BOOST_PP_ITERATION_DEPTH()==1 && BOOST_PP_ITERATION_FLAGS()==1
 // {{
 
 #define scARG(z,n,d) BOOST_PP_CAT(d,n)
 #define scPARAMS(d) BOOST_PP_ENUM_SHIFTED(BOOST_PP_ITERATION(),scARG,d)
-    
+
 template < typename R, typename T, scPARAMS(typename A) >
-boost::function<R ( scPARAMS(A) )> 
+boost::function<R ( scPARAMS(A) )>
 membind(R (T::* fn)( scPARAMS(A) ), scOBTYPE ob)
 {
     return boost::bind(fn, ob, scPARAMS(_) );
@@ -52,7 +53,7 @@ membind(R (T::* fn)( scPARAMS(A) ), scOBTYPE ob)
 
 #undef scPARAMS
 #undef scARG
-    
+
 // }
 #endif
 // done
@@ -60,4 +61,10 @@ membind(R (T::* fn)( scPARAMS(A) ), scOBTYPE ob)
 \f
 // Local Variables:
 // mode: c++
+// fill-column: 100
+// c-file-style: "senf"
+// indent-tabs-mode: nil
+// ispell-local-dictionary: "american"
+// compile-command: "scons -u test"
+// comment-column: 40
 // End: