17 lines
326 B
C++
17 lines
326 B
C++
#ifndef DATAREQUEST_H
|
|
#define DATAREQUEST_H
|
|
|
|
#include <nix.hpp>
|
|
|
|
class DataRequest
|
|
{
|
|
public:
|
|
DataRequest(const std::string &requestId, const nix::DataArray &array, const nix::NDSize &count, const nix::NDSize &start);
|
|
|
|
std::string id;
|
|
nix::DataArray array;
|
|
nix::NDSize count, start;
|
|
};
|
|
|
|
#endif // DATAREQUEST_H
|