start group - channel - component - buffer association

This commit is contained in:
2021-02-10 20:01:11 +01:00
parent 9bac0f1063
commit f4ecf48218
5 changed files with 138 additions and 5 deletions

30
lib/imc_result.hpp Normal file
View File

@@ -0,0 +1,30 @@
//---------------------------------------------------------------------------//
#ifndef IMCRESULT
#define IMCRESULT
#include "imc_datatype.hpp"
//---------------------------------------------------------------------------//
namespace imc
{
struct channel_tab
{
std::string name_;
// abscissa
std::vector<double> xaxis_;
std::string xunit_;
// ordinate
// std::vector<imc::datatype> yaxis_;
std::vector<double> yaxis_;
std::string yunit_;
};
}
#endif
//---------------------------------------------------------------------------//