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 #ifndef IMG_INDEX_H
00028 #define IMG_INDEX_H
00029
00030 #include <iosfwd>
00031
00032 #include <ost/base.hh>
00033 #include <ost/img/size.hh>
00034
00035 namespace ost { namespace img { namespace image_state {
00036
00037
00038
00039
00040
00041 struct DLLEXPORT_OST_IMG_BASE Index {
00042 Index(unsigned int uu,unsigned int vv, unsigned int ww):
00043 u(uu),v(vv),w(ww)
00044 {}
00045
00046 bool equal(const Index& i) const;
00047
00048 unsigned int u,v,w;
00049 };
00050
00051 DLLEXPORT_OST_IMG_BASE bool operator==(const Index& i1, const Index& i2);
00052 DLLEXPORT_OST_IMG_BASE bool operator!=(const Index& i1, const Index& i2);
00053
00054 DLLEXPORT_OST_IMG_BASE std::ostream& operator<<(std::ostream& out, const Index& i);
00055
00056 class DLLEXPORT_OST_IMG_BASE IndexIterator {
00057 public:
00058 IndexIterator(int w, int h, int d);
00059 IndexIterator(const Size& s);
00060
00061 bool AtStart() const;
00062 bool AtEnd() const;
00063
00064 IndexIterator& ToStart();
00065 IndexIterator& ToEnd();
00066
00067
00068 IndexIterator& operator++();
00069
00070 IndexIterator operator++(int);
00071
00072 IndexIterator& operator--();
00073
00074 IndexIterator operator--(int);
00075
00076 operator Index() const;
00077 private:
00078 unsigned int w_,h_,d_;
00079 Index indx_;
00080 bool at_end_;
00081
00082 void increment();
00083 void decrement();
00084 };
00085
00086 }}}
00087
00088 #endif