
* mln/win/multiple.hh: Here. --- milena/ChangeLog | 6 ++++++ milena/mln/win/multiple.hh | 22 +++++++++++----------- 2 files changed, 17 insertions(+), 11 deletions(-) diff --git a/milena/ChangeLog b/milena/ChangeLog index 60f3ad7..940e501 100644 --- a/milena/ChangeLog +++ b/milena/ChangeLog @@ -1,3 +1,9 @@ +2009-09-01 Roland Levillain <roland@lrde.epita.fr> + + Aesthetic changes in mln::win::multiple_qiter<W,F>. + + * mln/win/multiple.hh: Here. + 2009-08-24 Guillaume Lazzara <lazzara@lrde.epita.fr> * mln/win/multiple.hh: Add a missing init_ member. diff --git a/milena/mln/win/multiple.hh b/milena/mln/win/multiple.hh index a3632f5..a12bf83 100644 --- a/milena/mln/win/multiple.hh +++ b/milena/mln/win/multiple.hh @@ -139,15 +139,15 @@ namespace mln public: multiple_qiter(); + template <typename Pref> + multiple_qiter(const multiple<W,F>& w, const Pref& c); - template <typename P> - multiple_qiter(const multiple<W,F>& w, const P& c); - - void change_target(const multiple<W,F>& w); // Overridden to initialize size_. + /// Overridden to initialize size_. + void change_target(const multiple<W,F>& w); /// Delegated initialization. - template <typename P> - void init_(const multiple<W,F>& w, const P& c); + template <typename Pref> + void init_(const multiple<W,F>& w, const Pref& c); /// Test the iterator validity. bool is_valid_() const; @@ -316,18 +316,18 @@ namespace mln } template <typename W, typename F> - template <typename P> + template <typename Pref> inline - multiple_qiter<W,F>::multiple_qiter(const multiple<W,F>& w, const P& c) + multiple_qiter<W,F>::multiple_qiter(const multiple<W,F>& w, const Pref& c) { - this->init_(w, c); + init_(w, c); } template <typename W, typename F> - template <typename P> + template <typename Pref> inline void - multiple_qiter<W,F>::init_(const multiple<W,F>& w, const P& c) + multiple_qiter<W,F>::init_(const multiple<W,F>& w, const Pref& c) { this->center_at(c); // We have to first change the center so that 'invalidate' can -- 1.6.4.2