00001 #include "Landmark.h" 00002 00003 using namespace model; 00004 00023 Landmark::Landmark(const Landmark& other) { 00024 00025 } 00026 00048 Landmark& Landmark::operator=(const Landmark& other) 00049 { 00050 // if same object 00051 if ( this == &other ) 00052 return *this; 00053 00054 00055 return *this; 00056 } 00057 00079 bool Landmark::operator==( const Landmark& other ) const 00080 { 00081 00082 if( true ) { 00083 return true; 00084 } 00085 return false; 00086 } 00087 00109 bool Landmark::operator!=( const Landmark& other ) const 00110 { 00111 if( true ) { 00112 return false; 00113 } 00114 return true; 00115 }