Kùzu C++ API
Loading...
Searching...
No Matches
reader.h
Go to the documentation of this file.
1#pragma once
2
3#include <cstdint>
4
5namespace kuzu {
6namespace common {
7
8class Reader {
9public:
10 virtual void read(uint8_t* data, uint64_t size) = 0;
11 virtual ~Reader() = default;
12
13 virtual bool finished() = 0;
14};
15
16} // namespace common
17} // namespace kuzu
Definition reader.h:8
virtual void read(uint8_t *data, uint64_t size)=0
virtual ~Reader()=default
virtual bool finished()=0
Definition alter_type.h:5