Files
o3de/Gems/LyShine/Code/Editor/UndoStackExecutionScope.h
T
2021-06-23 10:55:22 -07:00

20 lines
300 B
C++

/*
* Copyright (c) Contributors to the Open 3D Engine Project
*
* SPDX-License-Identifier: Apache-2.0 OR MIT
*
*/
#pragma once
class UndoStackExecutionScope
{
public:
UndoStackExecutionScope(UndoStack* stack);
virtual ~UndoStackExecutionScope();
private:
UndoStack* m_stack;
};