#pragma once #include #include /** @brief Get well known name of input unique name * * If user passes in well known name then that will be returned. * * @param[in] owners - Current list of owners * @param[in] request - The name to look up * @param[out] wellKnown - The well known name if found * * @return True if well known name is found, false otherwise */ bool getWellKnown( const boost::container::flat_map& owners, const std::string& request, std::string& wellKnown);