ImagingTools Core SDK
CEventBasedRepresentationControllerComp.h
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ImtCore-Commercial
2#pragma once
3
4
5// ImtCore includes
6#include <imtloggui/CRepresentationControllerCompBase.h>
7
8
9namespace imtloggui
10{
11
12
13class CEventBasedRepresentationControllerComp: public CRepresentationControllerCompBase
14{
15public:
16 typedef CRepresentationControllerCompBase BaseClass;
17
18 I_BEGIN_COMPONENT(CEventBasedRepresentationControllerComp)
19 I_END_COMPONENT
20
21protected:
22 // reimplemented (CRepresentationControllerCompBase)
23 virtual void BuildRepresentation(
24 istd::IChangeable& representation,
25 imtlog::IEventProvider::EventContainerPtr containerPtr,
26 const imtbase::CTimeRange& timeRange) const override;
27};
28
29
30} // namespace imtloggui
31
32