/** ** \file misc/fwd.hh ** \brief Forward declarations for misc:: items. */ #pragma once namespace misc { // From file-library.hh. class file_library; // From map.hh. template class map; // From endomap.hh. template class endomap; // From ref.hh. template class ref; // From select-const.hh. template struct constify_traits; template struct id_traits; // From symbol.hh. class symbol; // From xalloc.hh. template class xalloc; // From timer.hh class timer; } // namespace misc