summaryrefslogtreecommitdiff
path: root/i/marvin
diff options
context:
space:
mode:
authorschodet2006-02-12 18:53:56 +0000
committerschodet2006-02-12 18:53:56 +0000
commit2c883aa526c320b1dfb232ed3a42bb30ef357954 (patch)
tree8a4e1d2f63e16aa05a5e4dcdbb8bed044843cf1f /i/marvin
parent16ac59fb02448900914ab2309ca3e9925174a8c3 (diff)
Un #endif qui manque.
Diffstat (limited to 'i/marvin')
-rw-r--r--i/marvin/src/utils/any.tcc1
-rw-r--r--i/marvin/src/utils/callback.hh11
-rw-r--r--i/marvin/src/utils/callback.tcc14
3 files changed, 16 insertions, 10 deletions
diff --git a/i/marvin/src/utils/any.tcc b/i/marvin/src/utils/any.tcc
index e942156..0d36d6e 100644
--- a/i/marvin/src/utils/any.tcc
+++ b/i/marvin/src/utils/any.tcc
@@ -182,3 +182,4 @@ operator<< (std::ostream &os, const any &rhs)
return rhs.holder_->print (os);
}
+#endif // any_tcc
diff --git a/i/marvin/src/utils/callback.hh b/i/marvin/src/utils/callback.hh
index c5dc229..ab1311c 100644
--- a/i/marvin/src/utils/callback.hh
+++ b/i/marvin/src/utils/callback.hh
@@ -1,9 +1,13 @@
#ifndef callback_hh
#define callback_hh
// callback.hh
-// robert - programme du robot 2005. {{{
+// marvin - programme du robot 2006. {{{
//
-// Copyright (C) 2004 Nicolas Schodet
+// Copyright (C) 2003-2006 Nicolas Schodet
+//
+// Robot APB Team/Efrei 2006.
+// Web: http://assos.efrei.fr/robot/
+// Email: robot AT efrei DOT fr
//
// 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
@@ -19,9 +23,6 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
-// Contact :
-// Web: http://perso.efrei.fr/~schodet/
-// Email: <contact@ni.fr.eu.org>
// }}}
#include <stdexcept>
diff --git a/i/marvin/src/utils/callback.tcc b/i/marvin/src/utils/callback.tcc
index d10df75..4e8bdd4 100644
--- a/i/marvin/src/utils/callback.tcc
+++ b/i/marvin/src/utils/callback.tcc
@@ -1,7 +1,13 @@
+#ifndef callback_tcc
+#define callback_tcc
// callback.tcc
-// robert - programme du robot 2005. {{{
+// marvin - programme du robot 2006. {{{
//
-// Copyright (C) 2004 Nicolas Schodet
+// Copyright (C) 2003-2006 Nicolas Schodet
+//
+// Robot APB Team/Efrei 2006.
+// Web: http://assos.efrei.fr/robot/
+// Email: robot AT efrei DOT fr
//
// 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
@@ -17,9 +23,6 @@
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
-// Contact :
-// Web: http://perso.efrei.fr/~schodet/
-// Email: <contact@ni.fr.eu.org>
// }}}
#include <algorithm>
@@ -134,3 +137,4 @@ Callback<R>::Holder<T>::clone (void)
return new Holder<T> (callback_);
}
+#endif // callback_tcc