diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-12-04 13:58:02 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-12-15 23:04:39 +0100 |
| commit | 600ff28dd73f2cf17725382b68a4b1b2573f2e34 (patch) | |
| tree | a105c686458d8998438652aeca6299cf9000edcd /src/rez/entry.cpp | |
| download | globalops-600ff28dd73f2cf17725382b68a4b1b2573f2e34.tar.gz | |
Diffstat (limited to 'src/rez/entry.cpp')
| -rw-r--r-- | src/rez/entry.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/rez/entry.cpp b/src/rez/entry.cpp new file mode 100644 index 0000000..2e2f73e --- /dev/null +++ b/src/rez/entry.cpp @@ -0,0 +1,10 @@ +#include <rez/entry.h> +#include <rez/io.h> + +int rez::entry::read(rez::io &io) +{ + return io.read_le(type) + || io.read_le(pos) + || io.read_le(size) + || io.read_le(time); +} |
