moving code into aare:: namespace

This commit is contained in:
Erik Frojdh
2024-04-02 12:26:51 +02:00
parent 449c5119a4
commit 0a6030aa3e
35 changed files with 122 additions and 17 deletions

View File

@ -1,6 +1,8 @@
#include "aare/RawFile.hpp"
#include "aare/utils/logger.hpp"
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();
@ -77,3 +79,5 @@ RawFile::~RawFile() {
}
}
}
} // namespace aare