https://svn.lrde.epita.fr/svn/oln/branches/cleanup-2008/milena
Index: ChangeLog
from Thierry Geraud <thierry.geraud(a)lrde.epita.fr>
Remove two useless files from mln/core/.
* mln/core/dp_array.hh: Remove.
* sandbox/garrigues/fllt/fllt_simple.cc
(dp_array): Replace by util::array.
* mln/core/point_pair.hh: Remove. This class is only used by
a single file (sandbox/pellegrin/set/core/p_line_graph.hh).
The latter file is a sandbox try and is now obsolete.
fllt_simple.cc | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
Index: sandbox/garrigues/fllt/fllt_simple.cc
--- sandbox/garrigues/fllt/fllt_simple.cc (revision 2178)
+++ sandbox/garrigues/fllt/fllt_simple.cc (working copy)
@@ -38,7 +38,7 @@
#include <mln/core/image/cast_image.hh>
#include <mln/core/site_set/p_queue_fast.hh>
-#include <mln/core/dp_array.hh>
+#include <mln/util/array.hh>
#include <mln/value/int_u8.hh>
@@ -149,9 +149,9 @@
{
// C6 neigboohood.
//static std::vector<dpoint2d> nbhs[2];
- static dp_array<dpoint2d> nbhs[2];
+ static util::array<dpoint2d> nbhs[2];
- static inline const dp_array<dpoint2d>& get(point2d p)
+ static inline const util::array<dpoint2d>& get(point2d p)
{
static bool toto = false;
@@ -176,7 +176,7 @@
return nbhs[abs(p[1] % 2)];
}
};
- dp_array<dpoint2d> c6_neighb::nbhs[2];
+ util::array<dpoint2d> c6_neighb::nbhs[2];
struct c6_interpixel