blob: 51e81a3c36936962051eb913ecf02c70de465ff0 (
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::tests { struct base_test; struct tests_data; }
namespace floormat {
template<typename T> class safe_ptr;
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
|