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