| 16 | namespace forge |
| 17 | { |
| 18 | Histogram::Histogram(const unsigned pNBins, const dtype pDataType) |
| 19 | { |
| 20 | fg_histogram temp = 0; |
| 21 | FG_THROW(fg_create_histogram(&temp, pNBins, (fg_dtype)pDataType)); |
| 22 | std::swap(mValue, temp); |
| 23 | } |
| 24 | |
| 25 | Histogram::Histogram(const Histogram& pOther) |
| 26 | { |
nothing calls this directly
no test coverage detected