Renamed NameMapperProxy -> UpdatableNameMapper

This commit is contained in:
Veloman Yunkan
2021-11-27 21:47:24 +04:00
parent 3aeeeeee76
commit 298247ca9b
3 changed files with 16 additions and 16 deletions

View File

@ -56,10 +56,10 @@ class HumanReadableNameMapper : public NameMapper {
virtual std::string getIdForName(const std::string& name) const;
};
class NameMapperProxy : public NameMapper {
class UpdatableNameMapper : public NameMapper {
typedef std::shared_ptr<NameMapper> NameMapperHandle;
public:
NameMapperProxy(Library& library, bool withAlias);
UpdatableNameMapper(Library& library, bool withAlias);
virtual std::string getNameForId(const std::string& id) const;
virtual std::string getIdForName(const std::string& name) const;