diff options
| author | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
|---|---|---|
| committer | Martial Simon <msimon_fr@hotmail.com> | 2025-09-15 01:07:58 +0200 |
| commit | 967be9e750221ab2ab783f95df79bb26d290a45e (patch) | |
| tree | 6802900a5e975f9f68b169f0f503f040056d6952 /tiger-compiler/lib/misc/fwd.hh | |
Diffstat (limited to 'tiger-compiler/lib/misc/fwd.hh')
| -rw-r--r-- | tiger-compiler/lib/misc/fwd.hh | 34 |
1 files changed, 34 insertions, 0 deletions
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 <typename T, typename N> class map; + // From endomap.hh. + template <typename T> class endomap; + + // From ref.hh. + template <typename T> class ref; + + // From select-const.hh. + template <typename T> struct constify_traits; + template <typename T> struct id_traits; + + // From symbol.hh. + class symbol; + + // From xalloc.hh. + template <class StoredType> class xalloc; + + // From timer.hh + class timer; + +} // namespace misc |
