00001 #ifndef CONTOUR_H 00002 #define CONTOUR_H 00003 00004 namespace model { 00005 00025 class Contour { 00026 private: 00027 00028 public: 00044 Contour() {}; 00060 ~Contour() {}; 00061 00062 // copy operations 00063 Contour(const Contour& other); 00064 Contour& operator=(const Contour& other); 00065 00066 // comparison 00067 bool operator==( const Contour& other ) const; 00068 bool operator!=( const Contour& other ) const; 00069 00070 }; 00071 00077 } 00078 00079 #endif //CONTOUR_H