| 16 | namespace forge |
| 17 | { |
| 18 | Plot::Plot(const unsigned pNumPoints, const dtype pDataType, const ChartType pChartType, |
| 19 | const PlotType pPlotType, const MarkerType pMarkerType) |
| 20 | { |
| 21 | fg_plot temp = 0; |
| 22 | FG_THROW(fg_create_plot(&temp, pNumPoints, (fg_dtype)pDataType, |
| 23 | pChartType, pPlotType, pMarkerType)); |
| 24 | std::swap(mValue, temp); |
| 25 | } |
| 26 | |
| 27 | Plot::Plot(const Plot& pOther) |
| 28 | { |
nothing calls this directly
no test coverage detected