This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/base/strings_bundle.hpp
2016-12-29 16:45:35 +03:00

16 lines
400 B
C++

#pragma once
#include <map>
#include <string>
class StringsBundle
{
using TStringMap = std::map<std::string, std::string>;
TStringMap m_values;
TStringMap m_defValues;
public:
void SetDefaultString(std::string const & name, std::string const & value);
void SetString(std::string const & name, std::string const & value);
std::string const GetString(std::string const & name) const;
};