blob: 7b7d7791bf74b7926b700a0f822fbdd68011bf22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/**
** \file object/fwd.hh
** \brief Forward declarations of using types.
*/
#pragma once
#include <misc/map.hh>
#include <misc/symbol.hh>
#include <type/class.hh>
namespace object
{
/// Names associated to class types.
using class_names_type = misc::map<const type::Class*, misc::symbol>;
} // namespace object
|