9 lines
198 B
C
9 lines
198 B
C
#ifndef SIMPLESEARCH_SEARCHSUMMARY_H
|
|
#define SIMPLESEARCH_SEARCHSUMMARY_H
|
|
|
|
struct SearchSummary {
|
|
long long comparisons = 0;
|
|
double timeSpentMs = 0;
|
|
};
|
|
|
|
#endif //SIMPLESEARCH_SEARCHSUMMARY_H
|