| 1 | #include "base/strings_bundle.hpp" |
| 2 | |
| 3 | void StringsBundle::SetDefaultString(std::string const & name, std::string const & value) |
| 4 | { |
| 5 | m_defValues[name] = value; |
| 6 | } |
| 7 | |
| 8 | void StringsBundle::SetString(std::string const & name, std::string const & value) |
| 9 | { |