00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef OLENA_CORE_ABSTRACT_IMAGE_SIZE_HH
00029 # define OLENA_CORE_ABSTRACT_IMAGE_SIZE_HH
00030
00031 # include <mlc/type.hh>
00032 # include <mlc/contract.hh>
00033 # include <oln/core/coord.hh>
00034 # include <ntg/utils/debug.hh>
00035 # include <sstream>
00036
00037
00038
00039 namespace oln {
00040
00041 namespace abstract {
00042
00043
00044
00045 template<class Exact>
00046 struct image_size;
00047
00048 }
00049
00050 template<class Exact>
00051 struct image_size_traits;
00052
00060 template<class Exact>
00061 struct image_size_traits<abstract::image_size<Exact> >
00062 {
00063 };
00064
00065
00066 namespace abstract {
00067
00068
00075 template<class Exact>
00076 struct image_size : public mlc_hierarchy::any< Exact >
00077 {
00078
00079 public:
00080
00081 enum { dim = image_size_traits<Exact>::dim };
00082
00087 coord
00088 nth(unsigned n) const
00089 {
00090 assertion(n < dim);
00091 return coord_[n];
00092 }
00093
00099 coord&
00100 nth(unsigned n)
00101 {
00102 assertion(n < dim);
00103 return coord_[n];
00104 }
00105
00107 coord
00108 border() const
00109 {
00110 return border_;
00111 }
00112
00114
00115 coord&
00116 border()
00117 {
00118 return border_;
00119 }
00120
00127 template< class S >
00128 bool
00129 operator==(const image_size<S>& size) const
00130 {
00131 for (unsigned i = 0; i < dim; ++i)
00132 if (coord_[i] != size.coord_[i])
00133 return false;
00134 return true;
00135 }
00136
00142 template< class S >
00143 bool
00144 operator!=(const image_size<S>& size) const
00145 {
00146 for (unsigned i = 0; i < dim; ++i)
00147 if (coord_[i] != size.coord_[i])
00148 return true;
00149 return false;
00150 }
00151
00152
00153
00154 static std::string
00155 name()
00156 {
00157 return std::string("image_size<") +
00158 Exact::name() + ">";
00159 }
00160
00161 image_size()
00162 {}
00163
00164 protected:
00165
00172 coord border_;
00173
00174 private:
00175
00176
00181 coord coord_[dim];
00182
00183 };
00184
00185 }
00186
00187 }
00188
00189
00190 #endif // ! OLENA_CORE_ABSTRACT_IMAGE_SIZE_HH