summaryrefslogtreecommitdiff
path: root/tiger-compiler/lib/misc/fwd.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tiger-compiler/lib/misc/fwd.hh')
-rw-r--r--tiger-compiler/lib/misc/fwd.hh34
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