| 136 | return data->int_values.at(i); |
| 137 | } |
| 138 | int PersistentDataItem::ival(int i) const |
| 139 | { |
| 140 | CHECK_INVALID_ARGUMENT(isValid()); |
| 141 | CHECK_INVALID_ARGUMENT(i >= 0 && i < (int)NumInts); |
| 142 | return data->int_values.at(i); |
| 143 | } |
| 144 | |
| 145 | const std::string & PersistentDataItem::get_str() { |
| 146 | static const std::string empty; |
no test coverage detected