LeviLamina
Loading...
Searching...
No Matches
IHitResultContainer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7class HitResult;
8// clang-format on
9
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~IHitResultContainer() = default;
15
16 virtual void addHitResult(::HitResult, ::HitResult) = 0;
17
18 virtual void clear() = 0;
19
20 virtual ::gsl::span<::std::pair<::HitResult, ::HitResult> const> getHits() const = 0;
21 // NOLINTEND
22
23public:
24 // virtual function thunks
25 // NOLINTBEGIN
26
27 // NOLINTEND
28};
Definition HitResult.h:17
Definition IHitResultContainer.h:10