summaryrefslogtreecommitdiffhomepage
path: root/compat/borrowed-ptr-fwd.hpp
blob: 8fcc5ddee4e4deb8e826bc6a0eddecf545b1c596 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

namespace floormat {

struct bptr_base;

template<typename T> class bptr;
template<typename T> class weak_bptr;

template<typename T> bptr(T* ptr) -> bptr<T>;
template<typename T> bptr(const T* ptr) -> bptr<const T>;

} // namespace floormat