ImagingTools Core SDK
ITransactionManager.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
12
13class ITransactionManager: virtual public istd::IChangeable
14{
15public:
16 virtual bool StartTransaction() = 0;
17 virtual bool CancelTransaction() = 0;
18 virtual bool EndTransaction() = 0;
19};
20
21
22} // namespace imtbase
23
24