From 967be9e750221ab2ab783f95df79bb26d290a45e Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Sep 2025 01:07:58 +0200 Subject: add: added projects --- tiger-compiler/lib/misc/fwd.hh | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 tiger-compiler/lib/misc/fwd.hh (limited to 'tiger-compiler/lib/misc/fwd.hh') diff --git a/tiger-compiler/lib/misc/fwd.hh b/tiger-compiler/lib/misc/fwd.hh new file mode 100644 index 0000000..33f0cc1 --- /dev/null +++ b/tiger-compiler/lib/misc/fwd.hh @@ -0,0 +1,34 @@ +/** + ** \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 -- cgit v1.2.3