From 8e761289a2446367267c6c0d9a26e734f0f78306 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 16 Dec 2020 20:29:05 +0300 Subject: Get rid of legacy build systems and rename cutl/ to libcutl/ --- libcutl/compiler/type-info.hxx | 110 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 110 insertions(+) create mode 100644 libcutl/compiler/type-info.hxx (limited to 'libcutl/compiler/type-info.hxx') diff --git a/libcutl/compiler/type-info.hxx b/libcutl/compiler/type-info.hxx new file mode 100644 index 0000000..4263a41 --- /dev/null +++ b/libcutl/compiler/type-info.hxx @@ -0,0 +1,110 @@ +// file : libcutl/compiler/type-info.hxx +// license : MIT; see accompanying LICENSE file + +#ifndef LIBCUTL_COMPILER_TYPE_INFO_HXX +#define LIBCUTL_COMPILER_TYPE_INFO_HXX + +#include +#include +#include // std::type_info + +#include +#include +#include + +#include + +namespace cutl +{ + namespace compiler + { + // + // + class type_info; + typedef type_info type_info_t; + + + // + // + class base_info + { + public: + base_info (type_id const&); + + public: + type_info_t const& + type_info () const; + + private: + type_id type_id_; + mutable type_info_t const* type_info_; + }; + + typedef base_info base_info_t; + + + // + // + class type_info + { + typedef std::vector bases; + + public: + typedef + bases::const_iterator + base_iterator; + + public: + type_info (type_id_t const&); + + type_id_t + type_id () const; + + base_iterator + begin_base () const; + + base_iterator + end_base () const; + + void + add_base (type_id_t const&); + + private: + type_id_t type_id_; + bases bases_; + }; + + + // + // + class no_type_info: exception {}; + + LIBCUTL_EXPORT type_info const& + lookup (type_id const&); + + type_info const& + lookup (std::type_info const&); + + template + type_info const& + lookup (X const volatile&); + + template + type_info const& + lookup (); + + LIBCUTL_EXPORT void + insert (type_info const&); + + namespace bits + { + struct default_type_info_id {}; + typedef std::map type_info_map; + static static_ptr type_info_map_; + } + } +} + +#include + +#endif // LIBCUTL_COMPILER_TYPE_INFO_HXX -- cgit v1.1