blob: b4ee52899ab1bdeb47ec04c18298c68028bace9b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#pragma once
#include "compat/defs.hpp"
namespace floormat {
template<typename T> class safe_ptr;
struct tests_data;
struct tests_data_
{
fm_DECLARE_DELETED_COPY_ASSIGNMENT(tests_data_);
virtual ~tests_data_() noexcept;
[[nodiscard]] static safe_ptr<tests_data_> make();
protected:
tests_data_();
};
} // namespace floormat
|