mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-15 16:57:12 +02:00
renamed _get_data() to data()
This commit is contained in:
@ -5,7 +5,7 @@ namespace aare{
|
||||
|
||||
Frame RawFile::get_frame(size_t frame_number) {
|
||||
auto f = Frame(this->m_rows, this->m_cols, this->m_bitdepth);
|
||||
std::byte *frame_buffer = f._get_data();
|
||||
std::byte *frame_buffer = f.data();
|
||||
get_frame_into(frame_number, frame_buffer);
|
||||
return f;
|
||||
}
|
||||
|
Reference in New Issue
Block a user