Index: ChangeLog
from Simon Odou <simon(a)lrde.epita.fr>
* oln/core/properties.hh: Add missing property declaration for
backward point iterator and point iterator.
* oln/core/abstract/image.hh: Likewise.
abstract/image.hh | 4 ++++
properties.hh | 1 +
2 files changed, 5 insertions(+)
Index: oln/core/properties.hh
--- oln/core/properties.hh (revision 104)
+++ oln/core/properties.hh (working copy)
@@ -60,6 +60,7 @@
struct point_type;
struct concrete_type;
struct dpoint_type;
+ struct piter_type;
struct fwd_piter_type;
struct bkd_piter_type;
struct fwd_witer_type;
Index: oln/core/abstract/image.hh
--- oln/core/abstract/image.hh (revision 104)
+++ oln/core/abstract/image.hh (working copy)
@@ -64,7 +64,9 @@
mlc_decl_prop(category::image, value_type);
mlc_decl_prop(category::image, point_type);
mlc_decl_prop(category::image, size_type);
+ mlc_decl_prop(category::image, piter_type);
mlc_decl_prop(category::image, fwd_piter_type);
+ mlc_decl_prop(category::image, bkd_piter_type);
mlc_decl_prop_with_default(category::image, value_storage_type, mlc::no_type);
mlc_decl_prop_with_default(category::image, storage_type, mlc::no_type);
mlc_decl_prop_with_default(category::image, delegated_type, mlc::no_type);
@@ -101,7 +103,9 @@
mlc_register_prop(category::image, value_type);
mlc_register_prop(category::image, point_type);
mlc_register_prop(category::image, size_type);
+ mlc_register_prop(category::image, piter_type);
mlc_register_prop(category::image, fwd_piter_type);
+ mlc_register_prop(category::image, bkd_piter_type);
mlc_register_prop(category::image, value_storage_type);
mlc_register_prop(category::image, storage_type);
mlc_register_prop(category::image, delegated_type);