owlps/owlps-positioning/src/result.cc

26 lines
357 B
C++

#include "result.hh"
/* *** Operators *** */
const Result& Result::operator=(const Result &source)
{
if (this == &source)
return *this ;
position = source.position ;
request = source.request ;
return *this ;
}
bool Result::operator==(const Result &source)
{
return
position == source.position &&
request == source.request ;
}