#pragma once #include #include class mangler { private: std::map occurence_count; public: std::string new_mangled_name(const std::string& str); };