Face Engine SDK  5.14.0
A face detection, recognition and tracking engine.
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
IResultBatch.h
1 #pragma once
2 
3 #include <fsdk/Types/Span.h>
4 #include <fsdk/IRefCounted.h>
5 #include <cstddef>
6 
7 namespace fsdk {
8 
9  template <typename T>
10  struct IResultBatch : public IRefCounted{
11  public:
12  virtual Span<T> getResults(size_t index = 0) const = 0;
13  virtual size_t getSize() const = 0;
14  };
15 
16 }
Base strong reference counted object interface.
Definition: IRefCounted.h:36
Definition: IResultBatch.h:10
Span. Not owning data view. It incapsulated pointer to the continuous array with one or more T objec...
Definition: Span.h:14
Reference counted object interface.