/* * Copyright (c) Contributors to the Open 3D Engine Project * * SPDX-License-Identifier: Apache-2.0 OR MIT * */ #pragma once #include namespace ProjectSettingsTool { class LastPathTraits : public AZ::EBusTraits { public: using Bus = AZ::EBus; // Bus Configuration static const AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Single; virtual QString GetLastImagePath() = 0; virtual void SetLastImagePath(const QString& path) = 0; }; typedef AZ::EBus LastPathBus; } // namespace ProjectSettingsTool