You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
288 B

1 year ago
  1. #pragma once
  2. #include <fsdk/Types/Span.h>
  3. #include <fsdk/IRefCounted.h>
  4. #include <cstddef>
  5. namespace fsdk {
  6. template <typename T>
  7. struct IResultBatch : public IRefCounted{
  8. public:
  9. virtual Span<T> getResults(size_t index = 0) const = 0;
  10. virtual size_t getSize() const = 0;
  11. };
  12. }