19 lines
397 B
C++
19 lines
397 B
C++
#ifndef DATARESULT1D_H
|
|
#define DATARESULT1D_H
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
|
|
class DataResult1D
|
|
{
|
|
public:
|
|
DataResult1D(){};
|
|
DataResult1D(const std::string &request_id, const std::string &entityId, const std::vector<double> &x, const std::vector<double> &y);
|
|
|
|
std::string id, entityId;
|
|
std::vector<double> xdata;
|
|
std::vector<double> ydata;
|
|
};
|
|
|
|
#endif // DATARESULT1D_H
|