https://svn.lrde.epita.fr/svn/oln/trunk/milena
Index: ChangeLog
from Roland Levillain <roland(a)lrde.epita.fr>
* mln/core/box2d.hh, mln/core/image2d.hh: Use fully qualified type
names to help swig wrap these types.
box2d.hh | 2 +-
image2d.hh | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
Index: mln/core/box2d.hh
--- mln/core/box2d.hh (revision 2132)
+++ mln/core/box2d.hh (working copy)
@@ -46,7 +46,7 @@
*
* \see mln::win::rectangle2d.
*/
- typedef box_<point2d> box2d;
+ typedef box_<mln::point2d> box2d;
} // end of namespace mln
Index: mln/core/image2d.hh
--- mln/core/image2d.hh (revision 2132)
+++ mln/core/image2d.hh (working copy)
@@ -112,7 +112,7 @@
* thickness around data.
*/
template <typename T>
- struct image2d : public internal::image_primary_< box2d, image2d<T> >
+ struct image2d : public internal::image_primary_< mln::box2d, image2d<T> >
{
// Warning: just to make effective types appear in Doxygen:
typedef box2d pset;