summaryrefslogtreecommitdiff
path: root/2005
diff options
context:
space:
mode:
authorschodet2005-03-06 13:46:15 +0000
committerschodet2005-03-06 13:46:15 +0000
commit5853e1c41b1750a0c26462fac32f97bd8ac05b3f (patch)
treebcc3fea5bd213038da5ba859b4718881a135d629 /2005
parent58820fecf8e29acfa79728deaa1f931e2c351509 (diff)
Ajout d'un commentaire.
Diffstat (limited to '2005')
-rw-r--r--2005/i/robert/src/geometry/vector.hh1
-rw-r--r--2005/i/robert/src/geometry/vector.tcc1
2 files changed, 2 insertions, 0 deletions
diff --git a/2005/i/robert/src/geometry/vector.hh b/2005/i/robert/src/geometry/vector.hh
index 089656e..e32f57a 100644
--- a/2005/i/robert/src/geometry/vector.hh
+++ b/2005/i/robert/src/geometry/vector.hh
@@ -69,6 +69,7 @@ template<typename T>
VectorT<T>
operator* (T scalar, const VectorT<T> &v);
+/// Sortie sur un ostream.
template<typename T>
std::ostream &operator<< (std::ostream &os, const VectorT<T> &v);
diff --git a/2005/i/robert/src/geometry/vector.tcc b/2005/i/robert/src/geometry/vector.tcc
index e9775c8..12120b0 100644
--- a/2005/i/robert/src/geometry/vector.tcc
+++ b/2005/i/robert/src/geometry/vector.tcc
@@ -174,6 +174,7 @@ operator* (T scalar, const VectorT<T> &v)
return r;
}
+/// Sortie sur un ostream.
template<typename T>
std::ostream &operator<< (std::ostream &os, const VectorT<T> &v)
{