#pragma once namespace floormat { #define FM_BPTR_DEBUG //#define FM_NO_WEAK_BPTR struct bptr_base; template class bptr; template class weak_bptr; template bptr(T* ptr) -> bptr; #ifndef FM_NO_WEAK_BPTR template weak_bptr(const bptr& ptr) -> weak_bptr; #endif } // namespace floormat