ImagingTools Core SDK
CProductionRepresentationViewComp.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// ACF includes
6#include <icomp/CComponentBase.h>
7
8// ImtCore includes
9#include <imtloggui/CRepresentationViewCompBase.h>
10#include <imtloggui/CProductionSpeedItem.h>
11
12
13namespace imtloggui
14{
15
16
17class CProductionRepresentationViewComp: public CRepresentationViewCompBase
18{
19public:
20 typedef CRepresentationViewCompBase BaseClass;
21
22 I_BEGIN_COMPONENT(CProductionRepresentationViewComp)
23 I_END_COMPONENT
24
25protected:
26 // reimplemented (imod::CSingleModelObserverBase)
27 virtual void OnUpdate(const istd::IChangeable::ChangeSet& changeSet) override;
28};
29
30
31} // namespace imtloggui
32
33