ImagingTools Core SDK
CNumericParamSummaryRepresentationControllerComp.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 <imtbase/ISummaryRepresentationController.h>
10
11
12namespace imtbase
13{
14
15
16class CNumericParamSummaryRepresentationControllerComp:
17 public icomp::CComponentBase,
18 virtual public ISummaryRepresentationController
19{
20public:
21 typedef icomp::CComponentBase BaseClass;
22
23 I_BEGIN_COMPONENT(CNumericParamSummaryRepresentationControllerComp);
24 I_REGISTER_INTERFACE(ISummaryRepresentationController);
25 I_END_COMPONENT;
26
27 // reimplemented (ISummaryRepresentationController)
28 virtual bool CreateSummaryRepresentation(const istd::IChangeable& param, QString& textRepresentation) const override;
29};
30
31
32} // namespace imtbase
33
34