#pragma once #include "compat/defs.hpp" namespace floormat::tests { struct base_test; struct tests_data; } namespace floormat { template class safe_ptr; struct tests_data_ { fm_DECLARE_DELETED_COPY_ASSIGNMENT(tests_data_); virtual ~tests_data_() noexcept; [[nodiscard]] static safe_ptr make(); protected: tests_data_(); }; } // namespace floormat