| 140 | } |
| 141 | |
| 142 | bool ModuleSaveData::HasProperty(std::string prop) |
| 143 | { |
| 144 | for (auto i = mValues.begin(); i != mValues.end(); ++i) |
| 145 | { |
| 146 | if ((*i)->mProperty == prop) |
| 147 | return true; |
| 148 | } |
| 149 | return false; |
| 150 | } |
| 151 | |
| 152 | int ModuleSaveData::GetInt(std::string prop) |
| 153 | { |
no outgoing calls
no test coverage detected