blob: 33f0cc1b0415f00cc7d91713217f00418a3f5f10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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
|