| 69 | } |
| 70 | |
| 71 | void PropSetSimple::SetMultiple(const char *s) { |
| 72 | const char *eol = strchr(s, '\n'); |
| 73 | while (eol) { |
| 74 | Set(s); |
| 75 | s = eol + 1; |
| 76 | eol = strchr(s, '\n'); |
| 77 | } |
| 78 | Set(s); |
| 79 | } |
| 80 | |
| 81 | const char *PropSetSimple::Get(const char *key) const { |
| 82 | mapss *props = static_cast<mapss *>(impl); |