ACF $AcfVersion:0$
ISpectrumInfo.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-2.1-or-later OR GPL-2.0-or-later OR GPL-3.0-or-later OR LicenseRef-ACF-Commercial
2#pragma once
3
4
5// ACF includes
6#include <istd/IChangeable.h>
7#include <istd/TRange.h>
8
9
10namespace icmm
11{
12
13
17class ISpectrumInfo: virtual public istd::IChangeable
18{
19public:
23 virtual istd::CIntRange GetSpectralRange() const = 0;
24
29 virtual int GetStep() const = 0;
30
34 virtual int GetSamplesCount() const = 0;
35};
36
37
38} // namespace icmm
Common interface for describing the properties or meta-informations of a measured/sampled spectrum.
virtual int GetStep() const =0
Get distance/step between the samples in the spectrum definition (in nm).
virtual istd::CIntRange GetSpectralRange() const =0
Get the spectral range of the measured values given in nm.
virtual int GetSamplesCount() const =0
Return number of samples.
Common interface for data model objects, which can be changed.
Definition IChangeable.h:28
Contains color management classes.