| 60 | } |
| 61 | |
| 62 | void set(const std::string &object, const std::string ¶meter, uint_ value) |
| 63 | { |
| 64 | m_cache[std::make_pair(object, parameter)] = value; |
| 65 | |
| 66 | // set the dirty flag to true. this will cause the updated parameters |
| 67 | // to be stored to disk. |
| 68 | m_dirty = true; |
| 69 | } |
| 70 | |
| 71 | uint_ get(const std::string &object, const std::string ¶meter, uint_ default_value) |
| 72 | { |