| 23 | { |
| 24 | |
| 25 | Chart::Chart(const ChartType cType) |
| 26 | { |
| 27 | fg_chart temp = 0; |
| 28 | FG_THROW(fg_create_chart(&temp, (fg_chart_type)cType)); |
| 29 | std::swap(mValue, temp); |
| 30 | } |
| 31 | |
| 32 | Chart::Chart(const Chart& pOther) |
| 33 | { |
nothing calls this directly
no test coverage detected