| 507 | } |
| 508 | |
| 509 | bool ForgeManager::getChartAxesOverride(const fg_chart chart) { |
| 510 | auto iter = mChartAxesOverrideMap.find(chart); |
| 511 | if (iter == mChartAxesOverrideMap.end()) { |
| 512 | AF_ERROR("Chart Not Found!", AF_ERR_INTERNAL); |
| 513 | } |
| 514 | return mChartAxesOverrideMap[chart]; |
| 515 | } |
| 516 | |
| 517 | void ForgeManager::setChartAxesOverride(const fg_chart chart, bool flag) { |
| 518 | auto iter = mChartAxesOverrideMap.find(chart); |
no test coverage detected