//                    (C) 2016 SiLeader.
// Distributed under the Boost Software License, Version 1.0.
//    (See accompanying file LICENSE_1_0.txt or copy at
//          http://www.boost.org/LICENSE_1_0.txt)

#pragma once

namespace std
{
    class type_info
    {
    private:
        void* m_id;
    public:
        type_info(void* id);

        bool operator==(std::type_info&);
        bool operator!=(std::type_info&);
    };
}
