| 322 | } |
| 323 | |
| 324 | ForgeManager::WindowGridDims ForgeManager::getWindowGrid( |
| 325 | const fg_window window) { |
| 326 | auto gIter = mWndGridMap.find(window); |
| 327 | if (gIter == mWndGridMap.end()) { mWndGridMap[window] = make_pair(1, 1); } |
| 328 | return mWndGridMap[window]; |
| 329 | } |
| 330 | |
| 331 | fg_chart ForgeManager::getChart(const fg_window window, const int r, |
| 332 | const int c, const fg_chart_type ctype) { |
no test coverage detected