ACF $AcfVersion:0$
IChangeDelegator.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
8
9namespace istd
10{
11
12
80{
81public:
90 virtual istd::IChangeable* GetSlavePtr() const = 0;
91
107 virtual void SetSlavePtr(istd::IChangeable* slavePtr) = 0;
108};
109
110
111} // namespace istd
112
113
114
115
Common interface for all classes that support delegation of their data updates to another class.
virtual istd::IChangeable * GetSlavePtr() const =0
Gets the slave object pointer.
virtual void SetSlavePtr(istd::IChangeable *slavePtr)=0
Sets the slave object pointer for change delegation.
Common interface for data model objects, which can be changed.
Definition IChangeable.h:28
Standard library.
Definition IComponent.h:17