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_DPOINT2D_HH
00029 # define OLENA_CORE_DPOINT2D_HH
00030
00031 # include <oln/core/coord.hh>
00032 # include <oln/core/abstract/dpoint.hh>
00033 # include <iostream>
00034
00035 namespace oln {
00036
00037
00038 class point2d;
00039 class dpoint2d;
00040
00041
00042
00048 template<>
00049 struct dpoint_traits<dpoint2d>: public
00050 dpoint_traits<abstract::dpoint<dpoint2d> >
00051 {
00052 enum { dim = 2 };
00053 typedef point2d point_type;
00054 };
00055
00068 class dpoint2d : public abstract::dpoint< dpoint2d >
00069 {
00070
00071 public:
00072
00073 typedef abstract::dpoint< dpoint2d > super_type;
00074
00075 friend class abstract::dpoint< dpoint2d >;
00076
00077 dpoint2d();
00078
00080
00081 dpoint2d(coord row, coord col);
00082
00084 explicit dpoint2d(const point2d& p);
00085
00087
00088 coord
00089 row() const;
00090
00092
00093 coord&
00094 row();
00095
00097
00098 coord
00099 col() const;
00100
00102
00103 coord&
00104 col();
00105
00106 static std::string
00107 name()
00108 {
00109 return "dpoint2d";
00110 }
00111
00112 protected:
00113
00114
00119 dpoint2d
00120 plus_dp(const dpoint2d& dp) const;
00121
00126 dpoint2d
00127 minus() const;
00128
00129
00134 dpoint2d
00135 minus_dp(const dpoint2d& dp) const;
00136
00141 dpoint2d&
00142 plus_assign_dp(const dpoint2d& dp);
00143
00148 dpoint2d&
00149 minus_assign_dp(const dpoint2d& dp);
00150
00151 };
00152
00153 namespace internal
00154 {
00160 template<>
00161 struct default_less<dpoint2d> :
00162 public default_less<dpoint2d::super_type>
00163 {};
00164 }
00165
00166 }
00167
00169
00170 inline std::ostream&
00171 operator<<(std::ostream& o, const oln::dpoint2d& dp);
00172
00173 # include <oln/core/dpoint2d.hxx>
00174
00175 #endif // OLENA_CORE_DPOINT2D_HH