ImagingTools Core SDK
IDesignSchemaInfoProvider.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 <istd/IChangeable.h>
7
8
9namespace imtbase
10{
11 class ICollectionInfo;
12}
13
14namespace imtstyle
15{
16
17
18class IDesignSchemaInfoProvider: virtual public istd::IChangeable
19{
20public:
21 virtual const imtbase::ICollectionInfo& GetDesignSchemaList() const = 0;
22};
23
24
25} // namespace imtstyle
26
27