We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8970f17 commit 99e99e7Copy full SHA for 99e99e7
Framework/Core/include/Framework/InputSpec.h
@@ -30,6 +30,12 @@ struct InputSpec {
30
header::DataHeader::SubSpecificationType subSpec = 0;
31
enum Lifetime lifetime = Lifetime::Timeframe;
32
33
+ bool operator==(InputSpec const& that) const
34
+ {
35
+ return origin == that.origin && description == that.description && subSpec == that.subSpec &&
36
+ lifetime == that.lifetime;
37
+ };
38
+
39
friend std::ostream& operator<<(std::ostream& stream, InputSpec const& arg);
40
};
41
0 commit comments