deleted some commented lines

This commit is contained in:
2025-06-13 16:33:25 +02:00
parent be67bbab6b
commit 0f56846e3d
2 changed files with 0 additions and 7 deletions

View File

@ -62,8 +62,6 @@ class ScanParameters {
void increment_stop();
};
// class RawFile; // forward declaration
/**
* @brief Class for parsing a master file either in our .json format or the old
* .raw format

View File

@ -66,11 +66,6 @@ void RawFile::read_into(std::byte *image_buf, size_t n_frames,
}
}
// size_t RawFile::n_modules() const { return m_master.n_modules(); }
// size_t RawFile::n_modules_in_roi() const { return
// m_modules_in_roi.size(); }
size_t RawFile::bytes_per_frame() {
return m_geometry.pixels_x() * m_geometry.pixels_y() * m_master.bitdepth() /
bits_per_byte;