6 lines
135 B
C++
6 lines
135 B
C++
|
#include "DataStructure.h"
|
||
|
|
||
|
bool operator==(const PalmFeature &lhs, const PalmFeature &rhs) {
|
||
|
return lhs.feature == rhs.feature;
|
||
|
}
|