15 lines
258 B
C
15 lines
258 B
C
#pragma once
|
|
#include "simulation/StructProperty.h"
|
|
|
|
struct FindingElement
|
|
{
|
|
StructProperty property;
|
|
PropertyValue value;
|
|
|
|
bool operator ==(const FindingElement &other) const
|
|
{
|
|
return property == other.property &&
|
|
value == other.value;
|
|
}
|
|
};
|