ACF $AcfVersion:0$
IAConstraints.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
13class IAConstraints: virtual public istd::IChangeable
14{
15public:
19 virtual const istd::CRange& GetARange() const = 0;
20};
21
22
23
24
Interface for contraints of A.
virtual const istd::CRange & GetARange() const =0
Get the possible value range for A.
Common interface for data model objects, which can be changed.
Definition IChangeable.h:28